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

Wat is Chat GPT Font Changer?

Chat GPT Font Changer is een Chrome-extensie ontwikkeld door denno020, en de belangrijkste functie is "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Chat GPT Font Changer

Download Chat GPT Font Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
Officiële URL https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
Beschrijving An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
Bestandsgrootte 277 KB
Aantal Installaties 42
Huidige Versie 0.0.1
Laatst Bijgewerkt 2024-01-08
Publicatiedatum 2024-01-08
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar denno020
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}