Greasy Fork is available in English.

笔趣阁类小说网站阅读页精简

精简笔趣阁一类模板小说网站的阅读页面

À partir de 2020-02-26. Voir la dernière version.

// ==UserScript==
// @name         笔趣阁类小说网站阅读页精简
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  精简笔趣阁一类模板小说网站的阅读页面
// @author       miko
// @include        /.*www\.xbiquge\.la\/\d+\/\d+\/\d+\.html/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var h1 = document.getElementsByTagName('h1')[0];
    var content = document.getElementById('content');
    var bottem = document.getElementsByClassName('bottem2')[0];
    document.body.innerHTML="";
    h1.style="color:#ccaaaa;";
    var div=document.createElement('div');
    div.style="margin:0 auto ;width:80%";
    div.appendChild(h1);
    div.appendChild(content);
    div.appendChild(bottem);
    document.body.appendChild(div);
    document.body.style="background-color:#555;color:#cccccc;"
    content.style="font-size:20px;"
})();