Skip to content

Instantly share code, notes, and snippets.

@jeffmbellucci
Last active July 16, 2024 17:15
Show Gist options
  • Save jeffmbellucci/8db3a8b27664dac6b8f9cf10b416b433 to your computer and use it in GitHub Desktop.
Save jeffmbellucci/8db3a8b27664dac6b8f9cf10b416b433 to your computer and use it in GitHub Desktop.
Turn off/disable YouTube autoplay feature
// 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();
})();
@scrutinizer11
Copy link

So, is there still a workable JS script as of the present?

@volt4ire
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment