Greasy Fork is available in English.

Cosmic Sans

Takes your favourite pages and changes the font to something not so pleasent.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Cosmic Sans
// @namespace    https://greasyfork.org/en/users/28185-bit
// @version      1.0.2
// @description  Takes your favourite pages and changes the font to something not so pleasent.
// @author       Bit
// @include      *//*
// @grant        none
// ==/UserScript==
(function() {
  var all = document.all;
  for (var i=0; i<all.length; i++) {
      all[i].style.fontFamily = "'Comic Sans MS'";
  }
})(); void 0;