微信读书、得到电子书字体样式美化

阅读网页端微信读书、得到电子书的字体更加好看^_^ 可自行替换为其他字体

// ==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);