Yes, I'm here, YouTube Music

Clicks on the annoying button for you

// ==UserScript==
// @name         Yes, I'm here, YouTube Music
// @namespace    https://gitlab.com/user890104
// @version      2025-01-02
// @description  Clicks on the annoying button for you
// @author       Vencislav Atanasov
// @license      MIT
// @match        https://music.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        const popup = Array.from(document.getElementsByTagName('yt-formatted-string')).find(e => e.textContent === 'Still watching? Video will pause soon');

        if (!popup) {
            return;
        }

        const button = popup.parentElement.nextElementSibling.getElementsByTagName('button')?.[0];

        if (!button) {
            return;
        }

        button.click();
    }, 1_000);
})();

QingJ © 2025

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