NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name remove youtube autoplay // @description Remove autoplay from video suggestions on youtube // @namespace http://greasyfork.org/scripts/7893 // @include http://www.youtube.com/* // @include https://www.youtube.com/* // @version 1.1 // @grant none // ==/UserScript== function f() { try { var node = document.getElementById('autoplay-checkbox').parentNode.parentNode; if (node.className == 'checkbox-on-off') node.parentNode.removeChild(node); } catch (e) {} } f(); document.body.addEventListener('DOMSubtreeModified', f, false);