Remove Youtube Activity Check - Fork

Removes youtube's new "are you still there" experiment - forked from https://greasyfork.org/scripts/35157

< Feedback on Remove Youtube Activity Check - Fork

Review: Good - script works

§
Posted: 26.03.2020

New version, just click

// ==UserScript==
// @name         Youtube Confirmation Auto Click - Trenixjetix
// @description  Clicks on the confirmation button of youtube.
// @include      *://*.youtube.com/*
// @version      1
// @grant        none
// ==/UserScript==

setInterval(function() {
    'use strict';
    if (document.getElementById('confirm-button')) {
      document.getElementById('confirm-button').click()
    }
}, 1000)();

Post reply

Sign in to post a reply.