您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去掉每次刷新后出现的10秒弹窗
// ==UserScript== // @name 双拼练习去弹框 // @version 0.1 // @description 去掉每次刷新后出现的10秒弹窗 // @author NoOne // @match http://typing.sjz.io/ // @grant GM.getValue // @grant GM.setValue // @require http://code.jquery.com/jquery-2.2.4.min.js // @namespace https://gf.qytechs.cn/users/11075 // ==/UserScript== (function() { 'use strict'; // GM脚本 (async ()=>{ let counter = await GM.getValue('sjz-init', 0); console.log('This script has been run ' + counter + ' times.'); console.log(counter) if(counter==0){alert("请支持原网站作者(http://sjz.io/),本弹窗只显示一次。本脚本仅用于学习用途")} GM.setValue('sjz-init', ++counter); })(); // 正式代码 window.onload = function(){ var target=$(".modal-open").children(); target[0].remove(); target[1].remove(); $(".modal-open").attr("class",""); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址