您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
阅读网页端微信读书、得到电子书的字体更加好看^_^ 可自行替换为其他字体
// ==UserScript== // @name 微信读书、得到电子书字体样式美化 // @namespace https://github.com/nanvon // @description 阅读网页端微信读书、得到电子书的字体更加好看^_^ 可自行替换为其他字体 // @author nanvon // @version 0.2 // @match *://dedao.cn/* // @match *://*.dedao.cn/* // @match *://weread.qq.com/* // @license MIT // ==/UserScript== var css = document.createElement('style'); var text = document.createTextNode('{text-decoration:none!important;}*:not(i):not([class*="hermit"]):not([class*="btn"]):not([class*="button"]):not([class*="ico"]):not(i){font-family: "Fira Code","方正聚珍新仿简体","LXGW ZhenKai" !important; }'); css.appendChild(text); document.getElementsByTagName('head') [0].appendChild(css);