As of today, I no longer see the option to turn off YouTube's auto play feature and even when I did disable it while it was there, when a video ended, sometimes the next suggested video would play automatically making me feel a sudden rush to quickly stop the next video which I probably don't wanna see anyway.
Here is how I managed to disable this nuisance for good.
1) Install Tampermonkey
2) Right click on the Tampermonkey icon and choose options, then click on the + sign on the top left of its menu page to add a new script
3) Delete everything that is in the default template then copy/paste the below code without the C ode word on the top:
4) Finally, click on the save icon button on the top leftCode:// ==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); }());
-
Spartan@HIDevolution Company Representative
-
Or click "Turn off Auto Play" play on the right side under the video.
I do still see that button though. Might want to clear the browse cache. -
Spartan@HIDevolution Company Representative
Please check for Chrome updates then clear your cache then see if it's there or not. either way, this is a fail safe method as it always works. -
-
Spartan@HIDevolution Company Representative
-
Spartan@HIDevolution likes this.
-
Spartan@HIDevolution Company Representative
Cannot live without IDMbloodhawk likes this. -
bloodhawk and Spartan@HIDevolution like this.
-
Spartan@HIDevolution Company Representative
Guide: Disable YouTube Auto Play
Discussion in 'Windows OS and Software' started by Spartan@HIDevolution, Jul 11, 2016.