Global Roboto Mono

Changes All Fonts to Roboto Mono

// ==UserScript==
// @name       Global Roboto Mono
// @namespace  http://use.i.E.your.homepage/
// @author PopSquip
// @version    0.25
// @description  Changes All Fonts to Roboto Mono
// @match https://*/*
// @match http://*/*
// @copyright  2012+, You
// @grant      GM_addStyle
// @license Apache 2.0
// ==/UserScript==


GM_addStyle("head { font-family: 'Roboto Mono', monospace; }");
GM_addStyle("h1 { font-family: 'Roboto Mono', monospace; }");
GM_addStyle("body { font-family: 'Roboto Mono', monospace; }");
GM_addStyle("main { font-family: 'Roboto Mono', monospace; }");
GM_addStyle("div { font-family: 'Roboto Mono', monospace; }");
GM_addStyle("span { font-family: 'Roboto Mono', monospace; }");