NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name YouTube Auto Highers (4k)
// @description Make Play Video Auto Highers
// @details Make Play Video Auto Highers
// @author Bit Torrentse
// @license MIT
// @namespace https://github.com/BitTorrentse1/JavaScript-Premium-Accounts
// @homepage https://github.com/BitTorrentse1/JavaScript-Premium-Accounts
// @updateURL https://raw.githubusercontent.com/BitTorrentse1/JavaScript-Premium-Accounts/master/YouTube%20Auto%20Highers%20(4k).meta.js
// @downloadURL https://raw.githubusercontent.com/BitTorrentse1/JavaScript-Premium-Accounts/master/YouTube%20Auto%20Highers%20(4k).user.js
// @include http://*.youtube.com/*
// @include http://youtube.com/*
// @include https://*.youtube.com/*
// @include https://youtube.com/*
// @version 1.3.3
// @icon http://upload.wikimedia.org/wikipedia/commons/e/e8/Logo_Youtube.svg
// @run-at document-start
// @copyright 2014+, Bit Torrentse (http://www.absba.org)
// ==/UserScript==
var customQuality = true;
var quality = "highres";
if (customQuality)
{
var qualitySwap = {"240":"small", "360":"medium", "480":"large", "720":"hd720", "1080":"hd1080", "1440":"hd1440", "highres":"highres"};
unsafeWindow.onYouTubePlayerReady = function (playerId) {
location.href = 'javascript:void((function () { document.getElementById("movie_player").setPlaybackQuality("' + qualitySwap[quality] + '"); })())';
};
}