Disable video breaks. Disable youtube pause button. Auto confirm No Thanks Sign In to YouTube.
当前为
// ==UserScript== // @name YouTubeNeverSleeps // @namespace http://tampermonkey.net/ // @version 0.21 // @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() { if((document.getElementById('button') != null) && (document.getElementById('button').hasAttribute('aria-label') == true)) document.getElementById('button').click(); if(document.querySelector('video').paused == true) { document.querySelector('video').play(); } }, 1000); })();