// ==UserScript== // @name JS Snippets // @match *://*/* // @grant GM_registerMenuCommand // ==/UserScript== GM_registerMenuCommand("Set font to default", () => { document.querySelectorAll("body *:not(pre *)").forEach(el => { el.style.fontFamily = "nonExistentFont"; }); });