// ==UserScript== // @name 自动将网站字体改成浏览器默认字体 // @version 0.0.1 // @match *://*/* // @description 通过修改css的方法,自动将网站字体改成浏览器默认字体 // @license MIT // @namespace https://greasyfork.org/users/187381 // @downloadURL none // ==/UserScript== const defaultFontFamily = ` font-family: initial !important; } `; const arr = ["html", "body", "h1", "h2", "h3", "div", "p"]; for (const v of arr) { const elems = document.getElementsByTagName(v); for (var i = 0; i