// ==UserScript== // @name 笔趣阁类小说网站阅读页精简 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 精简笔趣阁一类模板小说网站的阅读页面 // @author miko // @include /.*www\.xbiquge\.la\/\d+\/\d+\/\d+\.html/ // @include /.*www\.xsbiquge\.com\/\d+_\d+\/\d+\.html/ // @homepageURL https://greasyfork.org/zh-CN/scripts/396935-笔趣阁类小说网站阅读页精简 // @note V0.3--新增匹配一个网址,新增清除网页js加入的广告 // @note V0.2--更改了滚动条样式和文本选中颜色 // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; function $(id){return document.getElementById(id)} var h1 = document.getElementsByTagName('h1')[0]; var content = $('content'); var bottem = document.getElementsByClassName('bottem2')[0]; document.body.innerHTML=""; h1.style="color:#dd9999;"; var div=document.createElement('div'); div.style="margin:0 auto ;width:80%"; div.appendChild(h1); div.innerHTML=div.innerHTML+"
" div.appendChild(content); div.appendChild(bottem); var style=document.createElement('style'); style.innerHTML="::selection {color:#fff;background-color: #5FB878 ;}::-moz-selection {color:#fff; background-color: #5FB878 ;}::-webkit-selection {color:#fff;background-color: #5FB878 ;}body::-webkit-scrollbar{width: 8px;height: 8px} body::-webkit-scrollbar-track{border-radius: 5px;background: #fff;}body::-webkit-scrollbar-thumb{background: #5FB878;border-radius: 5px;}" style.type="text/css" document.body.appendChild(style); document.body.appendChild(div); document.body.style="background-color:#555;color:#cccccc;" content.style="font-size:20px;" //清除广告 var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode("#cs_right_bottom,#_cs_bf_item{display:none !important}")); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } var bodys = document.getElementsByTagName("body"); if (bodys.length > 0) { bodys[0].appendChild(node); } })();