// ==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; } `); })();