System Fonts

Use system default fonts across the web

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         System Fonts
// @include      http*
// @locale      en
// @version      0.20
// @description  Use system default fonts across the web
// @author       Danny J Kendall (MANICX100)
// @grant        none
// @namespace https://greasyfork.org/users/169145

// ==/UserScript==


var s = document.createElement("style");
s.type = "text/css";
s.textContent = "* { font-family: Bahnschrift, -apple-system,BlinkMacSystemFont, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif !important; }";

document.head.appendChild(s);