The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Guide: Disable YouTube Auto Play

    Discussion in 'Windows OS and Software' started by Spartan@HIDevolution, Jul 11, 2016.

  1. Spartan@HIDevolution

    Spartan@HIDevolution Company Representative

    Reputations:
    39,567
    Messages:
    23,559
    Likes Received:
    36,826
    Trophy Points:
    931
    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:

    Code:
    // ==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);
    }());
    4) Finally, click on the save icon button on the top left
     
    inm8#2 and bloodhawk like this.
  2. bloodhawk

    bloodhawk Derailer of threads.

    Reputations:
    2,967
    Messages:
    5,851
    Likes Received:
    8,565
    Trophy Points:
    681
    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.
     
  3. Spartan@HIDevolution

    Spartan@HIDevolution Company Representative

    Reputations:
    39,567
    Messages:
    23,559
    Likes Received:
    36,826
    Trophy Points:
    931
    Just cleared my cache and reopened Chrome, the Auto Play toggle is gone! Hence why I created this thread ;)

    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.
     
  4. bloodhawk

    bloodhawk Derailer of threads.

    Reputations:
    2,967
    Messages:
    5,851
    Likes Received:
    8,565
    Trophy Points:
    681
    [​IMG]

    Just did :(
     
    Spartan@HIDevolution likes this.
  5. Spartan@HIDevolution

    Spartan@HIDevolution Company Representative

    Reputations:
    39,567
    Messages:
    23,559
    Likes Received:
    36,826
    Trophy Points:
    931
    Mine is gone:


    YouTube.png
     
    bloodhawk likes this.
  6. bloodhawk

    bloodhawk Derailer of threads.

    Reputations:
    2,967
    Messages:
    5,851
    Likes Received:
    8,565
    Trophy Points:
    681
    Try switching to cinema mode, or maybe try disabling IDM to check if its interfering. IDM has interfered with some stuffz before. Is it happening to other people as well ?
     
    Spartan@HIDevolution likes this.
  7. Spartan@HIDevolution

    Spartan@HIDevolution Company Representative

    Reputations:
    39,567
    Messages:
    23,559
    Likes Received:
    36,826
    Trophy Points:
    931
    not gonna bother, at least here's the guide to disabling that garbage :)

    Cannot live without IDM
     
    bloodhawk likes this.
  8. Galm

    Galm "Stand By, We're Analyzing The Situation!"

    Reputations:
    1,228
    Messages:
    5,696
    Likes Received:
    2,949
    Trophy Points:
    331
    Yeah the toggle is now in cinema mode, it was removed only on normal view.
     
  9. Spartan@HIDevolution

    Spartan@HIDevolution Company Representative

    Reputations:
    39,567
    Messages:
    23,559
    Likes Received:
    36,826
    Trophy Points:
    931
    ohhh and in all the years I've been watching YouTube videos, I just came to know about this cinema mode :rolleyes:
     
    bloodhawk and Galm like this.