您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
美化小说网站界面,支持笔趣阁系统的小说网站
当前为
// ==UserScript== // @name 小说阅读器 // @version 0.5 // @description 美化小说网站界面,支持笔趣阁系统的小说网站 // @author Zee Kim // @match *://*/*.html // @grant none // @namespace http://greasyfork.icu/users/756252 // ==/UserScript== (function () { "use strict"; if (!document.getElementById("content")) { return; } var title = document.querySelector("title").innerHTML; var content = document.querySelector("#content").innerHTML; document.title = title; content = content.split("https://www.abcxs.com"); content = content[0].replace(/ /g, ""); document.body.innerHTML = `<style> :root{ --background:#F8F1E3; --text:#4F321C; --active:#e44343; } @media (prefers-color-scheme: dark) { :root{ --background:#111; --text:#555; --active:#baae90; } } .xs_title{ padding:10px 0px; font-weight:bold; font-family:SourceHanSerifCN-Bold,Microsoft JhengHei,STFangsong; font-size:3.2rem; line-height:1; color:var(--active); } .xs_title::after{ display:block; content:""; width:50px; height:12px; border-radius:12px; background:var(--active); margin:10px 0; } </style> <div class="xs_title">${title}</div>${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;`; })();