Remove Youtube Activity Check - Fork

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

< Opiniones de Remove Youtube Activity Check - Fork

Puntuación: Bueno; el script funciona tal y como promete

§
Publicado: 26/3/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)();

Publicar respuesta

Inicia sesión para responder.