Greasy Fork is available in English.

Změna fontu na start.auto.cz

Změní font na stránce start.auto.cz

// ==UserScript==
// @name         Změna fontu na start.auto.cz
// @namespace    StartAutoCzFont
// @version      1.0
// @description  Změní font na stránce start.auto.cz
// @author       Štěpán Hašler
// @match        *://start.auto.cz/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
var s = document.createElement("style");
s.type = "text/css";
s.textContent = "* { font-family: calibri !important; }";
document.head.appendChild(s);
})();