您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
成都市中小学教师继续教育网-免15分钟弹窗和输验证码,给老婆挂机学习用
当前为
// ==UserScript== // @name 成都市中小学教师继续教育网-免继续学习弹窗和输验证码 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 成都市中小学教师继续教育网-免15分钟弹窗和输验证码,给老婆挂机学习用 // @author ray // @include *.cdjxjy.com/* // @match https://www.cdjxjy.com/ // @run-at document-end // @icon https://www.cdjxjy.com/SiteWeb/images/logo.png // @grant none // @license MIT // ==/UserScript== (function () { if(typeof(showyzm) === 'undefined'){ }else{ showyzm = function() {} showAlert(300,"已取消了验证码弹窗") } if(typeof(dingshi) === 'undefined'){ }else{ dingshi = 9999 showAlert(300,"已延长继续学习提示间隔到9999秒") } function showAlert(pWidth,content) { $("#msg").remove(); var html ='<div id="msg" style="position:fixed;top:5%;width:100%;height:30px;line-height:30px;margin-top:-15px;"><p style="background:#000;opacity:0.8;width:'+ pWidth +'px;color:#fff;text-align:center;padding:10px 10px;margin:0 auto;font-size:12px;border-radius:4px;">'+ content +'</p></div>' $("body").append(html); var t=setTimeout(next,2000); function next() { $("#msg").remove(); } } })();