Youtube Auto Continue

try to take over the world!

// ==UserScript==
// @name         Youtube Auto Continue
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  try to take over the world!
// @author       ahkui <[email protected]>
// @match        https://*.youtube.com/watch*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        if(document.querySelector('#confirm-button') !== null) {
            document.querySelector('#confirm-button').click()
        } else if(document.querySelector('[dialog-confirm]') !== null) {
            document.querySelector('[dialog-confirm]').click()
        }
    }, 100)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址