// ==UserScript== // @name 🔥🔥🔥防沉迷减点料🔥🔥🔥 // @name:en 07073, 7k7k and 4399 No Anti Indulgence // @description [❤️哪都能用] 已支持17yy,qq空间部分游戏,07073,7k7k,4399 [⚡️更加快速] 减点料最快0.99秒 [😱别怕大人] 大人来了就按"大人键" [✔️高可用率] 持续更新更靠谱 [⭕健康提醒] 每隔一段时间提醒用户休息, 防止用户沉迷游戏无法自拔 [🌵全屏游戏] 支持全屏游戏, 去除花里胡哨的玩意, 维护游戏体验 [🕶 手动减料] 防沉迷减料不成功? 对着防沉迷弹窗按快捷键 [💪重要更新] 7k7k又能玩了 // @description:en Say no to 07073, 7k7k and 4399's anti indulgence. // @namespace https://fcmsb250.github.io/ // @version 4.5.5.3 // @icon https://gitee.com/dsy4567/sofast/raw/master/game.png // @author dsy // @include *://*.07073.*/* // -------- // @include *://*.4399.*/* // @include *://*.*4399.*/* // @include *://*.4399*.*/* // @include *://*.iwan4399.*/* // @include *://*.aiwan4399.*/* // @include *://*.zxwyouxi.*/* // -------- // @include *://*.7k7k.*/* // @include *://*.*7k7k.*/* // @include *://*.7k7k*.*/* // -------- // @include *://gameapp.qq.com/* // -------- // @include *://*.17yy.*/* // @include *://*.*17yy.*/* // @include *://*.17yy*.*/* // -------- // @include *://wj.qq.com/* // @include *://greasyfork.org/*/scripts/437233-*/feedback // @grant GM_addStyle // @grant GM_getValue // @grant GM_info // @grant GM_notification // @grant GM_openInTab // @grant GM_registerMenuCommand // @grant GM_setValue // @grant GM_setClipboard // @grant GM_unregisterMenuCommand // @grant unsafeWindow // @supportURL https://gitee.com/dsy4567/Fucking-Anti-Indulgence/ // @run-at document-start // @downloadURL none // ==/UserScript== // NO CTRL+C OR CTRL+V // NO CTRL+C OR CTRL+V // NO CTRL+C OR CTRL+V // GM_addStyle(css) // GM_deleteValue(name) // GM_getValue(name, defaultValue) // GM_info ??? // GM_notification(text, title, image, onclick) // GM_openInTab(url, options) // GM_registerMenuCommand(name, fn, accessKey) // GM_setValue(name, value) // GM_setClipboard(data, info) // GM_unregisterMenuCommand(menuCmdId) // unsafeWindow = window var D = new Date(); if (self == top) { if ( GM_getValue("版本") != GM_info.script.version && GM_info.script.version == "4.5.5.1fgfgfg" ) { GM_notification( "快看看有什么新功能吧", "🔥🔥🔥防沉迷减点料🔥🔥🔥 更新完毕", "", () => { open( "https://greasyfork.org/zh-CN/scripts/437233-%E9%98%B2%E6%B2%89%E8%BF%B7%E5%8A%A0%E7%82%B9%E6%96%99", "_blank" ); } ); } } function 改变值(值, 默认值, 回调) { if (GM_getValue(值, 默认值) == "1") { GM_setValue(值, "0"); } else if (GM_getValue(值, 默认值) == "0") { GM_setValue(值, "1"); } else { GM_setValue(值, 默认值); } if (回调) { 回调(); } } function 初始化值(值, 默认值, 回调) { if (GM_getValue(值, "天知道是啥") == "天知道是啥") { GM_setValue(值, 默认值); } if (回调) { 回调(); } } function 检测状态(值) { if (GM_getValue(值) == "1") { return "✅"; } else { return "❌"; } } GM_setValue("版本", GM_info.script.version); 初始化值("安装日期", String(Math.floor(D.getTime() / 1000 / 60 / 60 / 24))); 初始化值("已提建议", "0"); 初始化值("停用快捷键", "0"); 初始化值("禁用全屏游戏", "0"); var 最后一个菜单id = 8; var 玩了几分钟 = 0; var 用了多少天 = Math.ceil(D.getTime() / 1000 / 60 / 60 / 24) - Number(GM_getValue("安装日期")); var 减料成功 = 0; const 脚本信息 = JSON.stringify({ 浏览器: navigator.userAgent, 脚本能更新: GM_info.scriptWillUpdate, 脚本版本: GM_info.script.version, 脚本更新地址: GM_info.script.updateURL, 脚本管理器: GM_info.scriptHandler, 脚本管理器版本: GM_info.version, 用多久: 用了多少天, }); const 开发者配置 = { 启用调试: 0, 始终处于游戏状态: 0, 输出减料时间: 0, 禁用自动防沉迷减料: 0, }; var 一堆伞兵玩意 = [ "#fcmIframe", "#anti-indulge", "#pusher", "#anti-indulge-prompt", "#messageBox", "#Guide", "#tc100", "#div_dialog", "#addiv", "#Anti_open", "#Anti_mask", "#swfdiv > div.box", "#page_wallpaper > div.xiaowei.xiaowei-orange > div.xw-left > div.xw-game > div.xw-top > div > div", "#cover", "#overlay", "#easyDialogBox", "#chCoverDiv", "#yx_log", "#codepop6", "#pop2", "#shadow", ".popup-c", ".cmMask", ".sdkDialog", ".fixedModal", ".play_load", ".realName", ".mask", ".ui-forbidden", ".toolDialog", ".webtipss", ".codegs", ]; function 更新菜单() { const 一堆菜单 = [ ["♥您已尽情欢乐" + String(用了多少天) + "天", undefined, undefined], [ "♥游戏时间: " + 玩了几分钟 + "分钟,请合理安排游戏时间", undefined, undefined, ], [ "再次减料按 alt + 鼠标中键", () => { 减料(); 传统减料(); }, undefined, ], [ "大人来了按 shift + 鼠标中键 (解除请再次减料)", () => { 大人来了(); }, undefined, ], [ "手动减料对着防沉迷按 shift + alt + 鼠标右键", () => { alert("手动减料对着防沉迷按 shift + alt + 鼠标右键"); }, undefined, ], [ 检测状态("停用快捷键") + " 停用快捷键", () => { 改变值("停用快捷键", "0", () => { 更新菜单(); }); }, undefined, ], [ 检测状态("禁用全屏游戏") + " 停用全屏游戏和自动下载.swf文件", () => { 改变值("禁用全屏游戏", "0", () => { 更新菜单(); }); }, undefined, ], [ "给个好评/反馈问题", () => { open("https://greasyfork.org/zh-CN/scripts/437233/feedback"); }, undefined, ], [ "复制脚本信息", () => { GM_setClipboard(脚本信息); }, ], [ "遇到访问错误? 点我解决", () => { location.href = location.href; }, ], ]; for ( let 索引 = 最后一个菜单id - 一堆菜单.length * 2; 索引 < 最后一个菜单id + 一堆菜单.length * 2; 索引++ ) { GM_unregisterMenuCommand(索引); } for (let 索引 = 0; 索引 < 一堆菜单.length; 索引++) { const 菜单名 = 一堆菜单[索引][0]; const 函数 = 一堆菜单[索引][1]; const 快捷键 = 一堆菜单[索引][2]; 最后一个菜单id = GM_registerMenuCommand(菜单名, 函数, 快捷键); } } function 大人来了() { console.log("[防沉迷减点料] 大人来了"); try { clearInterval(interval1); } catch (e) {} GM_addStyle( '*{margin:0;padding:0}ul{list-style:none;}.fl{float:left;}.fr{float:right;}.mysdkDialog{position:absolute;left:50%;top:50vh;margin:-210px 0 0 -309px;width:618px;z-index:20020}.mysdkDialog .myfcmdialog{color:black;position:absolute;left:0;top:0;width:620px;padding-bottom:30px;font-family:"microsoft yahei";font-size:14px;background:#fff;border-radius:8px;}.mysdkDialog .myfcmdialog .close-btn{position:absolute;right:0;top:0;width:40px;height:40px;background-color:red;line-height:40px;cursor:pointer;display:none}.mysdkDialog .myfcmdialog .title{line-height:30px;text-align:center;font-size:22px;font-weight:700;padding:25px 0 0;margin:0 40px;color:#454545;border:0;height:auto;float:none;width:auto;text-indent:0;}.mysdkDialog .myfcmdialog .stitle{text-align:left;line-height:1.6;margin:15px 40px 0;font-size:16px;}.mysdkDialog .myfcmdialog .stitle span{color:#ffa92d;}.mysdkDialog .myfcmdialog .mod-tip{margin:20px 40px 0;background:#F0F0F0;padding:12px 15px;border-radius:4px;color:#333;text-align:left}.mysdkDialog .myfcmdialog .tip-title{font-size:16px;font-weight:400;}.mysdkDialog .myfcmdialog .tip-info{margin-top:5px;line-height:26px;font-size:14px;}.mysdkDialog .myfcmdialog .tip-info li{font-size:16px;line-height:26px}.mysdkDialog .myfcmdialog .tip-info a{color:#FAA61B;text-decoration:underline;margin:0 4px;cursor:pointer;}.mysdkDialog .myfcmdialog .mod-btn{text-align:center;font-size:0;line-height:0;margin:25px 40px 0;}.mysdkDialog .myfcmdialog .mod-btn .btn-fcmprimary{display:inline-block;width:140px;height:38px;line-height:38px;border:1px solid #69bb01;color:#69bb01;font-size:14px;margin:0 15px;border-radius:5px;cursor:pointer;}.mysdkDialog .myfcmdialog .mod-btn .fr,.mysdkDialog .myfcmdialog .mod-btn .fl{width:250px;margin:0;}.mysdkDialog .myfcmdialog .mod-btn .btn-fcmprimary:hover{-webkit-filter:brightness(1);filter:brightness(1)}.mysdkDialog .myfcmdialog .mod-btn .btn-identity{background-color:#69bb01;color:#f8ffef}.fcmIframe{position:absolute;left:50%;top:270px;margin:0 0 0 -309px;width:618px;height:354px;z-index:2019;border:0 none;background-color:#000}.countDown{background:#eee;border-radius:3px;padding:10px;text-align:center;margin:20px 40px 0;font-size:16px;color:#666}.countDown .txt1{font-size:16px;height:28px;line-height:28px;color:#717171;}.countDown .txt2{height:40px;line-height:40px;font-size:26px;font-weight:bold;color:#54ba3d;}.mycmMask{display:none;width:100%;position:absolute;left:0;top:0;background:url(/images/Antiindulgence/ptlogin_mask.png) repeat;background:rgb(0,0,0);_background:url(about:blank);_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale,src="/images/Antiindulgence/ptlogin_mask.png");}' ); var 一个弹窗 = document.createElement("div"); 一个弹窗.className = "mysdkDialog"; 一个弹窗.innerHTML += '
下次可玩游戏时段
本周五晚上8:00-9:00
" + 脚本信息 + "\n\n---以上是脚本信息,有助于脚本作者解决问题---\n"; } if (location.href.indexOf("s2/9618279/815b") >= 0) { var interval3 = setInterval(() => { try { document.querySelector( "#question_q-26-Zd7K > div.question-body > textarea" ).value = 脚本信息; clearInterval(interval3); } catch (err) {} }, 1000); } 减点料(); setTimeout(() => { // 以防万一 document.querySelectorAll("canvas").forEach((element) => { element.addEventListener( "mousedown", function (e) { if (GM_getValue("停用快捷键") == "0") { if (e.button == 1 && e.shiftKey) { 大人来了(); } if (e.button == 1 && e.altKey) { 减料成功 = 0; 减料(); } } }, true ); }); }, 5000); }); 减点料(); console.log( "[防沉迷减点料] " + location.href + "\n\n脚本信息: ", 脚本信息, "\n\n开发者配置: ", 开发者配置 ); console.log( "[防沉迷减点料] 脚本执行完毕, 用时" + (new Date().getTime() - D.getTime()) + "ms ", location.href );