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é es Chat GPT Font Changer?

Chat GPT Font Changer es una extensión de Chrome desarrollada por denno020, y su función principal es "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Chat GPT Font Changer

Descarga archivos de extensión Chat GPT Font Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
URL Oficial https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
Descripción An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
Tamaño del Archivo 277 KB
Cantidad de Instalaciones 42
Versión Actual 0.0.1
Última Actualización 2024-01-08
Fecha de Publicación 2024-01-08
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador denno020
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}