// ==UserScript== // @name Comic Sans MS - SC3 Dynmap // @namespace Violentmonkey Scripts // @match https://dynmap.sc3.io/ // @grant none // @version 1.0 // @author Erb3 // @description Makes SwitchCraft dynmap Comic Sans MS // ==/UserScript== const head = document.querySelector('head'); if (!head) { return; } const style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = `* {font-family: "Comic Sans MS" !important;}`; head.appendChild(style);