// ==UserScript== // @name 华医网继续教育-好医生继续教育-河南专技教育 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 2025年度华医网继续教育公需课即将上线(官网公布上线时间为5月23日),请需要学习的学员注意了! // @author 帮帮客 // @license bbk_1106 // @require http://47.94.209.47:8942/BBK_Local_preview_zs_0.1.js // @match *://*.91huayi.com/* // @match *://*.yxlearning.com/* // @match *://*.cmechina.net/* // @match *://*.ghlearning.com/* // @match *://basic.smartedu.cn/teacherTraining* // @match *://*.zxx.edu.cn/teacherTraining/courseDetail* // @match *://*.qutjxjy.cn/* // @match *://*.hbysw.org/* // @match *://*.jxjyedu.org.cn/* // @match *://*.xjzyysxh.cn/* // @match *://*.mtnet.com.cn/* // @grant GM_setValue // @grant GM_getValue // @grant GM_listValues // @grant GM_xmlhttpRequest // @grant unsafeWindow // @require https://lib.baomitu.com/jquery/1.12.4/jquery.min.js // @icon https://mmbiz.qpic.cn/mmbiz_jpg/nc15h3nWHMVYP16HAuFe6PNJcic7mB6GFnNmk61LSHfH9ZPUoOWKnZiaaB9Jze8hCyrEYzIyicOzibs3e6ZIJTlcgw/640?wx_fmt=jpeg // @run-at document-start // ==/UserScript== (function() { 'use strict'; //【支持的平台】:华医网、好医生、河南专技; //【具备的功能】:自动跳过视频 ✔ 自动开展考试 ✔ 作答相同题目 ✔ 识别图形验证码 ✔ 含:公需、选修、学分类等,更多功能等你发掘~ //【用户的群体】:会员(非转会即可使用) let Set = GM_getValue("set");let Vs = "0.1"; if (GM_listValues().indexOf("set") == -1) { GM_setValue("set", { "idCard": "", "code": "", "hear": "", "version": Vs }); } setTimeout(function () { Set = GM_getValue("set"); if (Set['version'] != Vs) { let v0 = "https://www.cnblogs.com/BBK1106/p/17770770.html"; let v1 = prompt('BBK_JavaScript\n\n温馨提示;您有新版本更新\n\n最新版本:' + Set['version'] + ',当前版本:' + Vs + '\n\n更新流程:\n1.点击确定按钮进行跳转\n2.复制输入框内的地址到浏览器上打开即可\n\n注意事项:点击确定按钮后,个别浏览器会阻止弹窗而导致跳出失败,注意浏览器提示选择允许即可',v0); if(v1){window.open(v0);} } if (document.querySelector('#floatTips2')) { document.querySelector('#imga3').style.display = 'none'; if (document.querySelector('#floatTips')) { document.querySelector('#floatTips').style.display = 'none'; } } }, 1500); })();