您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
11/2/2023, 4:29:15 PM
当前为
// ==UserScript== // @name Background playback for Via Browser // @namespace Violentmonkey Scripts // @match https://*.youtube.com/* // @match https://*.youtube.com/ // @match https://m.youtube.com/* // @match https://m.youtube.com/ // @match https://*.youtube-nocookie.com/* // @grant none // @version 1.1 // @author Johnny Vo // @description 11/2/2023, 4:29:15 PM // ==/UserScript== 'use strict'; const lactRefreshInterval = 5 * 60 * 1000; // 5 mins const initialLactDelay = 1000; // Page Visibility API Object.defineProperties(document, { 'hidden': { value: false }, 'visibilityState': { value: 'visible' } }); window.addEventListener('visibilitychange', e => e.stopImmediatePropagation(), true); // _lact stuff function waitForYoutubeLactInit(delay = initialLactDelay) { if (window.hasOwnProperty('_lact')) { window.setInterval(() => { window._lact = Date.now(); }, lactRefreshInterval); } else { window.setTimeout(() => waitForYoutubeLactInit(delay * 2), delay); } } waitForYoutubeLactInit();