Forked from jeffmbellucci/disable_youtube_autoplay.js
Created
December 22, 2020 07:15
-
-
Save q158073378252010/e99025ca5e906361fc0a82ab9689217a to your computer and use it in GitHub Desktop.
Turn off/disable YouTube autoplay feature
This file contains hidden or 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
// To run, install GreaseMonkey or TamperMonkey extension in your browser | |
// Copy this code into new user script, and enable | |
// ==UserScript== | |
// @name Disable Youtube autoplay | |
// @version 1.0 | |
// @description This script turns off Youtube's newest autoplay feature after the page loads | |
// @author Jeff Bellucci | |
// @match *://www.youtube.com/* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
function uncheck(toggle) { | |
if (toggle.hasAttribute('checked')) { | |
toggle.click(); | |
} | |
} | |
function disableAfterLoad() { | |
var autoplayToggle = document.getElementById('toggle'); | |
if (autoplayToggle) { | |
uncheck(autoplayToggle); | |
} else { | |
setTimeout(disableAfterLoad, 500); | |
} | |
} | |
disableAfterLoad(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment