Chat GPT Font Changer

An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks

Was ist Chat GPT Font Changer?

Chat GPT Font Changer ist eine Chrome-Erweiterung, die von denno020 entwickelt wurde, und ihr Hauptmerkmal ist "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Chat GPT Font Changer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chat GPT Font Changer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extensions makes it incredibly easy for you to change up the look and feel of Chat GPT!
Font's will be applied Chat GPT-wide on your desktop machine.
Further, you can change the font specifically for code blocks, so instead of using a sans-serif or serif for code, you can choose your favourite monospace font.
Choose from any font that you have installed on your machine.                    

Grundlegende Informationen zur Erweiterung

Name Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
Offizielle URL https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
Beschreibung An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
Dateigröße 277 KB
Installationsanzahl 42
Aktuelle Version 0.0.1
Letztes Update 2024-01-08
Veröffentlichungsdatum 2024-01-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler denno020
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat GPT Font Changer",
    "version": "0.0.1",
    "description": "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "scripting",
        "activeTab",
        "fontSettings",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}