Remove all font-family specifications on any page
当前为
// ==UserScript==
// @name Unset All Font Families
// @description Remove all font-family specifications on any page
// @match *://*/*
// @run-at document-start
// @version 0.0.1.20250514204649
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function() {
const style = document.createElement('style');
style.textContent = `
/* Unset the font-family on every element and pseudo-element */
* ,
*::before,
*::after {
font-family: verdana !important;
}
`;
document.documentElement.appendChild(style);
})();