Comic Sans global

Change font

// ==UserScript==
// @name         Comic Sans global
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Change font
// @author       Ugolf
// @copyright    Ugolf (https://github.com/Ugolf)
// @match        *
// @grant        GM_addStyle
// ==/UserScript==

GM_addStyle ( `
    body, div, p, a, strong {
        font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif !important;
    }
`);

(function() {
    'use strict';
})();