CopyChatGPT - Sidebar Hider

Hide sidebar & copy ChatGPT answers. Clean, fast browsing.

CopyChatGPT - Sidebar Hider란 무엇입니까?

CopyChatGPT - Sidebar Hider은(는) hafizzeeshan619에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide sidebar & copy ChatGPT answers. Clean, fast browsing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CopyChatGPT - Sidebar Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        CopyChatGPT - Sidebar Hider is a lightweight and user-friendly Chrome extension that allows you to easily hide the sidebar on your screen when you need more space. With just one click, you can toggle the sidebar on and off, giving you a clutter-free browsing experience.

In addition, the extension also integrates with the ChatGPT language model, allowing you to quickly and easily copy the answers generated by ChatGPT. Simply click on the copy icon that will be the near of the every answer generated by ChatGPT, and the extension will automatically copy the text to your clipboard.

With CopyChatGPT - Sidebar Hider, you can enjoy a distraction-free browsing experience while also having quick access to the power of ChatGPT.                    

확장 프로그램 기본 정보

이름 CopyChatGPT - Sidebar Hider CopyChatGPT - Sidebar Hider
ID jcoamkkcoapjegcllcocchbiingomplo
공식 URL https://chrome.google.com/webstore/detail/copychatgpt-sidebar-hider/jcoamkkcoapjegcllcocchbiingomplo
설명 Hide sidebar & copy ChatGPT answers. Clean, fast browsing.
파일 크기 58.98 KB
설치 횟수 580
현재 버전 1.2
최근 업데이트 2023-03-06
출시 날짜 2023-02-20
평점 4.17/5 총 6 개의 평점
개발자 hafizzeeshan619
이메일 [email protected]
결제 유형 free
지원되는 언어 en,es,it,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Hafiz Zeeshan",
    "name": "CopyChatGPT - Sidebar Hider",
    "description": "Hide sidebar & copy ChatGPT answers. Clean, fast browsing.",
    "version": "1.2",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/chat.openai.com\/chat\/*"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "64": "assets\/icon64.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "CopyChatGPT - Sidebar Hider"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/chat\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}