Última actividad 1750232554

Revisión 89dfe88442cc2a6a302f048c961691ea894bc823

Hide song image youtube music Sin formato
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