Hide song image youtube music
· 625 B · Text
Eredeti
// ==UserScript==
// @name Hide song image
// @namespace http://tampermonkey.net/
// @version 2025-06-18
// @description try to take over the world!
// @author You
// @match https://music.youtube.com/watch?v=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Apply custom CSS
GM_addStyle(`
#song-image.ytmusic-player {
display: none !important;
}
#song-video.ytmusic-player {
display: none !important;
}
`);
})();
| 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 | })(); |
| 25 |