ChatGPT Widescreen Mode

Adds Widescreen + Fullscreen modes to ChatGPT for enhanced viewing + reduced scrolling

ChatGPT Widescreen Mode란 무엇입니까?

ChatGPT Widescreen Mode은(는) https://chatgptevo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds Widescreen + Fullscreen modes to ChatGPT for enhanced viewing + reduced scrolling"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ChatGPT Widescreen Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Source code: https://github.chatgptwidescreen.com
Support: https://support.chatgptwidescreen.com

ChatGPT Widescreen Mode (#2 Product of the Week on Product Hunt!) is a free Chrome Extension that adds Wide Screen, Full-Window, Full Screen + Regular View toggles to the ChatGPT chatbar for easy access.

Benefits of extra viewing modes include reduced scrolling, plus enhanced responses, particularly of these types:

💻 Programming code — Improves readability by preventing single lines from wrapping and obfuscating code

📃 Multi-step instructions — Keeps more steps on ONE page for easier review

📙 Long recipes — Allows you to cook without getting mouse or trackpad greasy from having to scroll

🎸 Original lyrics/poetry/essay/composition/screenplay — Creates a more immersive experience when expanded

You can also customize settings like Fuller Windows (expand text to the max — no sidebar, no margins, just pure ChatGPT) and Taller Chatbox (can be toggled on/off for live resizing).

And your settings are automatically applied to any tab ChatGPT is open in!                    

확장 프로그램 기본 정보

이름 ChatGPT Widescreen Mode ChatGPT Widescreen Mode
ID jgnjpnmofkalfliddjelaciggjgnphgm
공식 URL https://chromewebstore.google.com/detail/chatgpt-widescreen-mode/jgnjpnmofkalfliddjelaciggjgnphgm
설명 Adds Widescreen + Fullscreen modes to ChatGPT for enhanced viewing + reduced scrolling
파일 크기 214 KB
설치 횟수 4,000
현재 버전 2024.3.1
최근 업데이트 2024-03-02
출시 날짜 2023-04-11
평점 4.82/5 총 17 개의 평점
개발자 https://chatgptevo.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chatgptwidescreen.com
도움말 페이지 URL https://chatgptwidescreen.com/support
지원되는 언어 id,ms,de,en,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "2024.3.1",
    "author": "Adam Lui",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "223": "icons\/icon223.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "lib\/settings-utils.js",
                "lib\/chatgpt.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/poe.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}