ChatGPT Full Width

Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.

Qu'est-ce que ChatGPT Full Width ?

ChatGPT Full Width est une extension Chrome développée par zmunkas, et sa fonction principale est "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Full Width

Téléchargez les fichiers d'extension ChatGPT Full Width 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

                        If you are using ChatGPT and got tired of the criminally narrow chat bubbles especially when using for coding, you can add this extension to make the chat fill the available space.
With a better, full screen view the site is much more concise and code segments can be read and used much more easily.                    

Informations de Base sur l'Extension

Nom ChatGPT Full Width ChatGPT Full Width
ID gfnkaajgicgkehogagoiccdpecbhjikd
URL Officiel https://chromewebstore.google.com/detail/chatgpt-full-width/gfnkaajgicgkehogagoiccdpecbhjikd
Description Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.
Taille du Fichier 540 KB
Nombre d'Installations 711
Version Actuelle 1.1
Dernière Mise à Jour 2023-12-16
Date de Publication 2023-06-07
Évaluation 4.33/5 Total 9 Évaluations
Développeur zmunkas
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://bmc.link/zoltanmunkas
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Full Width",
    "description": "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.",
    "version": "1.1",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "[email protected]",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}