ChatGPT Full Width

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

Was ist ChatGPT Full Width?

ChatGPT Full Width ist eine Chrome-Erweiterung, die von zmunkas entwickelt wurde, und ihr Hauptmerkmal ist "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ChatGPT Full Width-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Full Width-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Full Width ChatGPT Full Width
ID gfnkaajgicgkehogagoiccdpecbhjikd
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-full-width/gfnkaajgicgkehogagoiccdpecbhjikd
Beschreibung Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.
Dateigröße 540 KB
Installationsanzahl 711
Aktuelle Version 1.1
Letztes Update 2023-12-16
Veröffentlichungsdatum 2023-06-07
Bewertung 4.33/5 Insgesamt 9 Bewertungen
Entwickler zmunkas
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://bmc.link/zoltanmunkas
Unterstützte Sprachen 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"
            ]
        }
    ]
}