ChatGPT Plus

ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.

ChatGPT Plus란 무엇입니까?

ChatGPT Plus은(는) zerodocom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A browser plugin that enhances the ability of ChatGPT.
The source code is available on GitHub: https://github.com/zerodocom/ChatGPT-Plus                    

확장 프로그램 기본 정보

이름 ChatGPT Plus ChatGPT Plus
ID pkdcpohhilpdgdooafpjnenmnhgbmdmh
공식 URL https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh
설명 ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
파일 크기 352 KB
설치 횟수 2,340
현재 버전 1.0.2
최근 업데이트 2023-05-22
출시 날짜 2023-01-02
평점 4.00/5 총 5 개의 평점
개발자 zerodocom
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zerodocom/ChatGPT-Plus
도움말 페이지 URL https://github.com/zerodocom/ChatGPT-Plus
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Plus",
    "manifest_version": 3,
    "description": "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.",
    "version": "1.0.2",
    "icons": {
        "16": "img\/logo.png",
        "32": "img\/logo.png",
        "48": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/logo.png"
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content.ts-loader.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "content.css",
                "options.css",
                "vue-router.css"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/defaults-e73e6c0c.js",
                "assets\/apiServer-3ddd2659.js",
                "assets\/content.ts-293e4619.js"
            ],
            "use_dynamic_url": true
        }
    ]
}