Close YT Confirmations

Auto click on Yes when YouTube auto-pause your video

// ==UserScript==
// @name         Close YT Confirmations
// @version      0.2
// @description  Auto click on Yes when YouTube auto-pause your video
// @author       You
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @match        https://www.youtube.com/watch?*
// @grant        none
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        const btns = $('a.yt-simple-endpoint.style-scope.yt-button-renderer')

        for (let i = 0; i < btns.length; i++) {
            if ($(btns[i]).is(':visible'))
                $(btns[i])[0].click()
        }
    },1000)
})();

QingJ © 2025

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