// ==UserScript== // @name 提醒自己这里面有不该看的内容 // @namespace http://tampermonkey.net/ // @version 2025-03-24 1.4 // @description 强制自己不要看不应该看的东西 // @author You // @match *://*/* // @exclude *://www.baidu.com/* // @exclude *://*.bing.com/* // @exclude *://*.google.com/* // @exclude *://post.smzdm.com/* // @exclude https://greasyfork.org/* // @exclude *://*.zhihu.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => { if ( (/第.*章/.test(document.body.innerHTML) && /书架/.test(document.body.innerHTML ) ) || document.body.innerHTML.indexOf("完本") > -1 ) { alert("你正在浏览小说网站,你不应该看小说,关闭它!") document.body.innerHTML = '' } if ( document.body.innerHTML.indexOf("海贼王") > -1 || document.body.innerHTML.indexOf("航海王") > -1 || document.body.innerHTML.indexOf("路飞") > -1 || document.body.innerHTML.indexOf("娜美") > -1) { alert("你正在浏览海贼王相关内容,你不应该看这些东西,关闭它!"); return; } }, 300) // Your code here... })();