// ==UserScript== // @name 删除所有有小说的页面 // @namespace http://tampermonkey.net/ // @version 2024-11-15 // @description 强制自己不要看小说 // @author You // @match *://*/* // @exclude *://www.baidu.com/* // @exclude *://*.bing.com/* // @exclude *://*.google.com/* // @exclude *://post.smzdm.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => { if (/第.*章/.test(document.body.innerHTML) || document.body.innerHTML.indexOf("玄幻") > -1 || /加入书架/.test(document.body.innerHTML)) { document.body.innerHTML = ''; } }, 100) // Your code here... })();