From f39b981dc5b4bbac0292bd0f67022562c66b286f Mon Sep 17 00:00:00 2001 From: yacksonn Date: Wed, 29 Oct 2025 10:48:54 -0400 Subject: [PATCH] add hide all images css --- resources/assets/snippets/Blank-PNG-Pic.png | Bin 0 -> 8724 bytes resources/snippets.json | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 resources/assets/snippets/Blank-PNG-Pic.png diff --git a/resources/assets/snippets/Blank-PNG-Pic.png b/resources/assets/snippets/Blank-PNG-Pic.png new file mode 100644 index 0000000000000000000000000000000000000000..74a49a0649e680a548ec27dad247010d844643d5 GIT binary patch literal 8724 zcmeAS@N?(olHy`uVBq!ia0y~yVA%k|9Be?5*NU6Z11Yv7Z+91l{~)+v@AAnE3BY;-V6V+q5;J0tyfRs+^ms zHe)qs-k+CyZvqX3fFIV&yT6Br-(&)Dx2@kVHE-M9yx&{i-rXkdzf%w-Xj8QR?dNU$ zx6kn(o}DYdeeeBmf2^t*ff5I{E%x7g_gl{G>Fp0QZ{OW^Jv<8J0|vdjxz(RP6x}M6 zdHpQvHb~?^>wD|E>aA}r`dC5S$nE=Q{=f01 zAT>GGR##GITiO3RAnF9-Ut-Z2rAC8bG!=|ygwe8Kv^X5C5k_mn(b{mdHXN-DM{C2; z+HkZs9IXvUYs1mnaI`iYtqn(O!_nGsv^E@3wPD@1;^St#u8tzC>vhyaJhd-y3a!0q zD&X|siSo=T^-VK#%y0d8@scwFlq{BvQlmjInhHiU!f07AS{#nn2t&R$lzvtFfq{W> zFK8{mXrV@*LM`_Hjr}>l|DAURl^_o!^?_?O7#KW+A=K`i-ScZ%Kq4}C`VObwe(u>0 z;v6vEUv;(g_H8-E*QNdEZ-W;;@WkJ?+qPGJy1mRl&7i5wNvzopr0Js5O A3IG5A literal 0 HcmV?d00001 diff --git a/resources/snippets.json b/resources/snippets.json index 550ed407..4a721fc1 100644 --- a/resources/snippets.json +++ b/resources/snippets.json @@ -532,5 +532,11 @@ "description": "Remove the unused space in topbar.", "code": ".Kgjmt7IX5samBYUpbkBu { display: none !important; }", "preview": "resources/assets/snippets/remove-unused-space.png" + }, + { + "title": "Hide All Images", + "description": "Hides all images across the Spotify UI, including album art, artist images, background images, playlist covers, profile avatars, podcast art, and more.", + "code": ".Root__main-view, .main-view-container, .os-content {} .Root__main-view [style*='background-image']:not([class*='Icon']):not([class*='icon']), .Root__main-view [style*='background:url']:not([class*='Icon']):not([class*='icon']), .Root__main-view [style*='image-set(']:not([class*='Icon']):not([class*='icon']) { background: none !important; } img, .cover-art-image, .artist-image, .card-image, .main-nowPlayingWidget-coverArt { display: none !important; visibility: hidden !important; } [aria-label*='Now Playing'] [style*='background-image'], [aria-label*='Now playing'] [style*='background-image'], [aria-label*='Now Playing'] [style*='image-set('], [aria-label*='Now playing'] [style*='image-set('], [aria-label*='Now Playing'] [style*='url('], [aria-label*='Now playing'] [style*='url('], [class^='main-nowPlayingView'] [style*='background-image'], [class^='main-nowPlayingView'] [style*='image-set('], [class^='main-nowPlayingView'] [style*='url('] { background: none !important; -webkit-mask-image: none !important; mask-image: none !important; } [style*='background-image'], [style*='background:url'], [style*='image-set('] { background: none !important; -webkit-mask-image: none !important; mask-image: none !important; }", + "preview": "resources/assets/snippets/Blank-PNG-Pic.png" } ]