admin bu gisti düzenledi . Düzenlemeye git
1 file changed, 24 insertions
Hide song image youtube music (dosya oluşturuldu)
| @@ -0,0 +1,24 @@ | |||
| 1 | + | // ==UserScript== | |
| 2 | + | // @name Hide song image | |
| 3 | + | // @namespace http://tampermonkey.net/ | |
| 4 | + | // @version 2025-06-18 | |
| 5 | + | // @description try to take over the world! | |
| 6 | + | // @author You | |
| 7 | + | // @match https://music.youtube.com/watch?v=* | |
| 8 | + | // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| 9 | + | // @grant GM_addStyle | |
| 10 | + | // ==/UserScript== | |
| 11 | + | ||
| 12 | + | (function() { | |
| 13 | + | 'use strict'; | |
| 14 | + | ||
| 15 | + | // Apply custom CSS | |
| 16 | + | GM_addStyle(` | |
| 17 | + | #song-image.ytmusic-player { | |
| 18 | + | display: none !important; | |
| 19 | + | } | |
| 20 | + | #song-video.ytmusic-player { | |
| 21 | + | display: none !important; | |
| 22 | + | } | |
| 23 | + | `); | |
| 24 | + | })(); | |
Daha yeni
Daha eski