/* */ .player-width { width: 1210px !important; } .player-height { height: 640px !important; } /* fullscreen */ [data-player-size="fullscreen"] .player-width { width: 100% !important; } [data-player-size="fullscreen"] .player-height { height: 100% !important; } /* */ #guide { display: none; } #player, #watch7-main-container { padding-left: 30px !important; } /* embed iframe */ #player.full-frame { padding-left: 0px !important; } /* About/Share */ #watch-discussion { display: none; } #watch7-action-buttons, #watch7-action-panels { display: none; } /* related videos */ .watch-wide #watch7-sidebar { margin-top: -642px !important; margin-left: 1240px !important; height: 620px !important; } .video-list-item { margin-bottom: 13px !important; } /* footer */ #body-container { padding-bottom: 0 !important; } #footer-container { display: none; }
/* */ .audio-only .player-width { width: 720px !important; } .audio-only .player-height { height: 40px !important; } /* */ .audio-only .html5-video-container { display: none; } /* */ .audio-only .html5-progress-list { height: 35px !important; } /* sidebar */ .audio-only .watch-wide #watch7-sidebar { display: none; }
.audio-only
and the last step is to automate its addition.Alt+M
and add / remove the class .audio-only: // ==UserScript== // @name Youtube audio-only switch // @description Toggle audio-only mode for saving cpu resources // @match http://www.youtube.com/* // ==/UserScript== document.body.onkeydown = function(event){ event = event || window.event; var keycode = event.charCode || event.keyCode; // Alt + M if(event.altKey && keycode == 77) { if(document.body.className.match(' audio-only')) document.body.className = document.body.className.replace(' audio-only', ''); else document.body.className += ' audio-only'; } }
/* */ #movie_player { width: 1260px !important; height: 580px !important; } #p { height: 580px !important; } /* */ #mh, #ct { margin: 0 } #ft { display: none; } /* sidebar */ #rc { margin-left: 1280px; margin-top: -690px; } /* === audio-only === */ /* */ .audio-only #movie_player { width: 720px !important; height: 40px !important; } .audio-only #p { height: 50px !important; } /* fullscreen */ [data-player-size="fullscreen"] #movie_player { width: 100% !important; height: 100% !important; } /* */ .audio-only .html5-video-container { display: none; } /* */ .audio-only .html5-progress-list { height: 35px !important; } /* sidebar */ .audio-only #rc { display: none; }
Source: https://habr.com/ru/post/201532/
All Articles