Remove Youtube Activity Check - Fork

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

< Feedback em Remove Youtube Activity Check - Fork

Avaliação: Bom - o script funciona

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

Publicar resposta

Faça o login para publicar uma resposta.