Change font

Changes the font to something else

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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         Change font
// @version      1.0.0
// @description  Changes the font to something else
// @author       Excigma
// @namespace    https://greatest.deepsurf.us/users/416480
// @match        https://diep.io/*
// @run-at       document-body
// @grant        unsafeWindow
// @grant        GM_addStyle
// ==/UserScript==


(() => {
    // This must be from Google fonts (fonts.google.com).
    const options = {
        fontFamily: "PT Sans",
    };

    let font = document.createElement("link");
    font.rel = "stylesheet";
    font.href = "https://fonts.googleapis.com/css2?family=PT+Sans&display=swap";
    // get font link from google fonts, from the right sidebar. refresh if you don't see it

    document.head.appendChild(font);

    const { set: fontSetter } = Object.getOwnPropertyDescriptor(CanvasRenderingContext2D.prototype, "font");
    Object.defineProperty(unsafeWindow.CanvasRenderingContext2D.prototype, "font", {
        set(value) {
    // same as first variable
            fontSetter.call(this, value.replace("Ubuntu", 'PT Sans'));
        }
    });
})()