// ==UserScript== // @name 小说阅读器 // @version 0.6 // @description 美化小说网站界面,支持笔趣阁系统的小说网站 // @author Zee Kim // @match *://*/*.html // @grant none // @namespace https://greasyfork.org/users/756252 // @downloadURL none // ==/UserScript== (function () { "use strict"; var title = document.querySelector("title").innerHTML; if(!title.includes("小说")){ return; } if (!document.getElementById("content")) { return; } var content = document.querySelector("#content").innerHTML; document.title = title; content = content.split("https://www.abcxs.com"); content = content[0].replace(/ /g, ""); document.body.innerHTML = `
${title}
${content}`; document.body.style.cssText = ` max-width:1200px; font-family: "STYuanti-SC-Regular","幼圆"; font-size: 2rem; padding: 6rem; background:var(--background) ; color:var(--text); line-height: 1.5;`; })();