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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}