Remove Youtube Activity Check - Fork

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

< Remove Youtube Activity Check - Fork 피드백으로 돌아가기

리뷰: 좋음 - 스크립트가 잘 작동함

§
게시: 2020-03-26

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)();

답글 게시

답글을 게시하려면 로그인하세요.