1
// ==UserScript==
2
// @name Comic Sans MS - SC3 Dynmap
3
// @namespace Violentmonkey Scripts
4
// @match https://dynmap.sc3.io/
5
// @grant none
6
// @version 1.0
7
// @author Erb3
8
// @description Makes SwitchCraft dynmap Comic Sans MS
9
// ==/UserScript==
10
11
const head = document.querySelector('head');
12
if (!head) { return; }
13
const style = document.createElement('style');
14
style.type = 'text/css';
15
style.innerHTML = `* {font-family: "Comic Sans MS" !important;}`;
16
head.appendChild(style);