您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
有搞头的脚本。
// ==UserScript== // @name YouGet_自动刷新 // @namespace http://www.youget.vip/ // @version 1.0 // @description 有搞头的脚本。 // @author You // @match http://*/* // @match https://*/* // @exclude https://排除/* // @icon http://www.youget.vip/logo/ygt.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 定义刷新时间间隔(单位:毫秒) const refreshInterval = 30 * 1000; // 5分钟 // 定义计时器,每隔一定时间刷新页面 setInterval(function() { location.reload(); }, refreshInterval); // Your code here... })();