Greasy Fork

自动将网站字体改成浏览器默认字体

通过修改css的方法,自动将网站字体改成浏览器默认字体

当前为 2023-11-18 提交的版本,查看 最新版本

// ==UserScript==
// @name         自动将网站字体改成浏览器默认字体
// @version      0.0.1
// @match        *://*/*
// @description  通过修改css的方法,自动将网站字体改成浏览器默认字体

// @license      MIT
// @namespace https://greasyfork.org/users/187381
// ==/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<elems.length; i++) {
    elems[i].style.cssText = myStyles; 

    }
}