您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Enable YouTube background playback in Firefox for Android
当前为
// ==UserScript== // @name YouTube Background Playback Firefox Mobile // @description Enable YouTube background playback in Firefox for Android // @namespace http://tampermonkey.net/ // @match *://m.youtube.com/* // @match *://*.youtube-nocookie.com/* // @grant none // @version 1.0 // @run-at document-end // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @author - // ==/UserScript== 'use strict'; const lactRefreshInterval = 5 * 60 * 1000; // 5 minutes 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();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址