-
-
Save jymmm/2c766bacf1095e72a62c503da7c23155 to your computer and use it in GitHub Desktop.
Removes the autoplay up next feature
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== | |
// @version 1.0.2 | |
// @name Removes the autoplay up next feature | |
// @match *://www.youtube.com/* | |
// @run-at document-start | |
// @grant none | |
// @noframes | |
// ==/UserScript== | |
(function () { | |
'use strict'; | |
function removeAPUN() { | |
var autoplaybar = document.getElementsByClassName('autoplay-bar')[0]; | |
if (autoplaybar) { | |
autoplaybar.removeAttribute('class'); | |
document.getElementsByClassName('checkbox-on-off')[0].remove(); | |
} | |
} | |
window.addEventListener('readystatechange', removeAPUN, true); | |
window.addEventListener('spfdone', removeAPUN); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment