Last active
October 8, 2019 07:19
-
-
Save BlurryFlurry/04124b45c0c4ec653cd2dae5a0ed266a to your computer and use it in GitHub Desktop.
Greesemonkey | Violentmonkey | Tampermonkey | Userscript to force youtube.com to play specific quality (480p, 360p etc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Youtube 480p | |
// @version 1 | |
// @grant none | |
// @run-at document-start | |
// @include https://www.youtube.com/* | |
// @version 1.1 | |
// @downloadURL https://gist.githubusercontent.com/BlurryFlurry/04124b45c0c4ec653cd2dae5a0ed266a/raw/.user.js | |
// @updateURL https://gist.githubusercontent.com/BlurryFlurry/04124b45c0c4ec653cd2dae5a0ed266a/raw/.user.js | |
// ==/UserScript== | |
(function () { | |
'use strict'; | |
var d = new Date; | |
var create = d.getTime(); | |
var expire = d.setFullYear(d.getFullYear() + 1); | |
localStorage.setItem('yt-player-quality','{"data":"large","expiration":' + expire+ ',"creation":'+create+'}'); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment