ChatGPT WideScreen Adjuster

Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability.

ChatGPT WideScreen Adjuster란 무엇입니까?

ChatGPT WideScreen Adjuster은(는) masachika.kmd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ChatGPT WideScreen Adjuster 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        "ChatGPT WideScreen Adjuster" is an extension that allows you to freely adjust the width of the display area in ChatGPT. You can customize the width of the display area, which was previously fixed, to your preferred reading width.

The main features include:

* Freely adjust the width: You can freely adjust the width of the ChatGPT display area to your preference.
* Easy operation: By moving the slider in the popup, you can instantly adjust the width of the display area.
* Save settings: Once you've adjusted the width, it is automatically saved and applied from the next time onwards.

With "ChatGPT WideScreen Adjuster", enjoy a more comfortable ChatGPT experience.

※ If you encounter any bugs or have any concerns, please open an issue on the following GitHub repository and we will address it.
https://github.com/masachika-kamada/ChatGPT-WideScreen-Adjuster                    

확장 프로그램 기본 정보

이름 ChatGPT WideScreen Adjuster ChatGPT WideScreen Adjuster
ID ioimfefhpfjpifdfijgjnbiojlneeiac
공식 URL https://chromewebstore.google.com/detail/chatgpt-widescreen-adjust/ioimfefhpfjpifdfijgjnbiojlneeiac
설명 Adjust your ChatGPT display width freely. Say goodbye to narrow text fields, and improve readability.
파일 크기 15.44 KB
설치 횟수 832
현재 버전 1.0.0
최근 업데이트 2023-06-14
출시 날짜 2023-06-11
평점 5.00/5 총 5 개의 평점
개발자 masachika.kmd
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT WideScreen Adjuster",
    "version": "1.0.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Kamada Masachika",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon\/icon16.png",
            "48": "icon\/icon48.png",
            "128": "icon\/icon128.png"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';"
    }
}