ChatGPT Full Width

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

什麼是ChatGPT Full Width?

ChatGPT Full Width是由zmunkas開發的Chrome擴展程式,該擴展的主要功能是“Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.”。

擴展截圖

screenshot
screenshot
screenshot

下載ChatGPT Full Width擴展crx文件

下載ChatGPT Full Width擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ChatGPT Full Width ChatGPT Full Width
ID gfnkaajgicgkehogagoiccdpecbhjikd
官方網址 https://chromewebstore.google.com/detail/chatgpt-full-width/gfnkaajgicgkehogagoiccdpecbhjikd
簡介 Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.
檔案大小 540 KB
安裝次數 711
目前版本 1.1
更新時間 2023-12-16
上架時間 2023-06-07
評分 4.33/5 共 9 次評分
開發者 zmunkas
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://bmc.link/zoltanmunkas
支援的語言 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"
            ]
        }
    ]
}