ChatGPT Widescreen Mode

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

ChatGPT Widescreen Mode क्या है?

ChatGPT Widescreen Mode https://chatgptevo.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Widescreen + Fullscreen modes to ChatGPT for enhanced viewing + reduced scrolling"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Widescreen Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}