// ==UserScript== // @name 拒绝小说网站背景色、修改字体、段落距离、去除起点阅读/笔趣阁等网站广告 // @namespace https://xuexizuoye.com // @version 1.31 // @description 我不要绿色,不要护眼色,不要你觉得,就要我觉得! // @author huansheng // @include http://*/* // @include https://*/* // @exclude *www.52pojie.cn* // @exclude *chinaz.com* // @exclude *greasyfork.org* // @grant GM_addStyle // @run-at document-start // @downloadURL none // ==/UserScript== function bgcwhite(){ console.log("修改背景色,字体格式->starting……"); GM_addStyle("body,.main-text-wrap,#content,.content,#main-text-wrap,.chapter-content,#chapter-content,#contentWp,.paper-box,.content-body,.content-body,.content-ext,#content p,#htmlContent,#chaptercontent {background-color: rgba(0, 0, 0, 0) !important;font-size: 16px!important;font-family: Helvetica Neue,Arial,PingFang SC,STHeiti,Microsoft YaHei,SimHei,sans-serif!important;line-height: 130%!important}"); console.log("修改背景色,字体格式->end……"); }; //#mys-wrapper function addel(){ console.log("尝试去除广告->starting……"); GM_addStyle("#close-game-op,#mys-wrapper,.mys-wrapper,#google-center-div,.google-center-div,#mys-content,#GoogleActiveViewElement,.GoogleActiveViewElement,#google_image_div,.adsbygoogle,.adsbygoogle-noablate,boy.jar,.GoogleActiveViewInnerContainer,div .top-read-ad,ins.ee,img.img_ad,.GoogleActiveViewElement img,.GoogleActiveViewElement a,.top-read-ad img,.top-read-ad a,.downcode,#j-topBgBox,#j-topHeadBox .back-to-op,.right-op-wrap,.games-op-wrap,.jumpWrap,#j_bodyRecWrap,.body-rec-mask,.game-wrap,.banner-wrap,.focus-img.cf,.notice-banner,#float-op-wrap,#j_leftRecBox a,#j_leftRecBox a,.body-rec-wrap,.float-op-wrap,.notice-list>ul>li>.red,#appss>dd div {background-image: none!important;dispaly:none!important;width:0!important;height:0!important;margin-left:-99999px!important}"); console.log("尝试去除广告->end……"); }; (function() { console.log("开始修改->end……"); bgcwhite(); console.log("修改网页结束->end……"); })(); window.onload=function(){ console.log("网页加载完毕再次修改确保万一!……"); addel(); bgcwhite(); console.log("再次修改确保结束!……"); }();