// ==UserScript== // @name Twitch不在直播就自动刷新 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 每30秒检测是否在直播,没在直播就刷新页面 // @author 冰封 // @match https://www.twitch.tv/playapex // @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv // @grant none // @license GPL-3.0-only // @downloadURL none // ==/UserScript== (function() { 'use strict'; function reload(){ window.location.reload(true); } setInterval(function () { if (document.getElementsByClassName("live-indicator-container").length == 0){ reload(); } }, 30*1000); })();