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

Qu'est-ce que Chat GPT Font Changer ?

Chat GPT Font Changer est une extension Chrome développée par denno020, et sa fonction principale est "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chat GPT Font Changer

Téléchargez les fichiers d'extension Chat GPT Font Changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
URL Officiel https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
Description An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
Taille du Fichier 277 KB
Nombre d'Installations 42
Version Actuelle 0.0.1
Dernière Mise à Jour 2024-01-08
Date de Publication 2024-01-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur denno020
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}