NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @author maxph5555
// @name Increase YouTube speed and volume
// @include *.youtube.com/watch*
// @version 1.0
// ==/UserScript==
unsafeWindow.onYouTubePlayerReady = function (playerId) {
location.href = 'javascript:void((function () { document.getElementById("movie_player").setPlaybackRate(1.5); document.getElementById("movie_player").setVolume(100); })())';
};