NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @author yasingedik
// @name YouTube Auto Speed
// @namespace m
// @include *.youtube.com/watch*
// @downloadURL https://openuserjs.org/install/yasingedik/m/YouTube_Auto_Speed.user.js
// @updateURL https://openuserjs.org/install/yasingedik/m/YouTube_Auto_Speed.user.js
// @version 1.0
// ==/UserScript==
unsafeWindow.onYouTubePlayerReady = function (playerId) {
location.href = 'javascript:void((function () { document.getElementById("movie_player").setPlaybackRate(1.5); })())';
};