您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
页面自动刷新:自动刷新页面
// ==UserScript== // @name 页面自动刷新 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 页面自动刷新:自动刷新页面 // @author wll // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js // @icon https://img-blog.csdnimg.cn/20181221195058594.gif // @match http://jira.square.life:8080/secure/shdsd-TimeWise-TimeSheet.jspa // @match http://172.18.100.162:8080/job/zengyuan/ // @grant GM_registerMenuCommand // @run-at document-body // @note 授权联系: [email protected] // @note 版本更新 22-03-25 0.0.1 页面自动刷新:自动刷新页面 // ==/UserScript== (function() { 'use strict'; function initMenu(){ var html = '<meta http-equiv="refresh" content="8" />' +'<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />' +'<meta http-equiv="Pragma" content="no-cache" />' +'<meta http-equiv="Expires" content="0" />' $('head').append(html); } window.setInterval(function() {initMenu();}, 10*1000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址