Change font to Comic Sans everywhere
// ==UserScript==
// @name Comic Sans global
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Change font to Comic Sans everywhere
// @author Ugolf
// @match *://*wykop.pl/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
* {
font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif !important;
}
`);