Removes youtube's new "are you still there" experiment - forked from https://greasyfork.org/scripts/35157
< Feedback on Remove Youtube Activity Check - Fork
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)();
Sign in to post a reply.
New version, just click