Remove Youtube Activity Check - Fork

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

< Părere la script-ul Remove Youtube Activity Check - Fork

Recenzie: Bun, script-ul merge

§
Postat în: 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)();

Postează un raspuns

Autentifică-te pentru a posta un răspuns.