您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disable video breaks. Disable youtube pause button. Auto confirm No Thanks Sign In to YouTube.
// ==UserScript== // @name YouTubeNeverSleeps // @namespace http://tampermonkey.net/ // @version 0.24 // @description Disable video breaks. Disable youtube pause button. Auto confirm No Thanks Sign In to YouTube. // @author [email protected] // @match https://greasyfork.org/en/scripts/381682-html5%E8%A7%86%E9%A2%91%E6%92%AD%E6%94%BE%E5%99%A8%E5%A2%9E%E5%BC%BA%E8%84%9A%E6%9C%AC // @match https://www.youtube.com/* // @grant none // ==/UserScript== (function() { 'use strict'; console.log("Beaware! YouTube never sleeps!"); setInterval(function() { //click No Thanks, Yes document.querySelectorAll('[aria-label="No thanks"], [aria-label="Yes"]').forEach( function(element) { if (element.offsetParent != null) element.click() } ) //press play if paused for any other reason if(document.querySelector('video').paused == true) { document.querySelector('video').play(); } }, 1000); })();