ChatGPT Plus

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

ChatGPT Plus là gì?

ChatGPT Plus là một tiện ích mở rộng Chrome được phát triển bởi zerodocom, và tính năng chính của nó là "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Plus

Tải xuống các tệp mở rộng ChatGPT Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Plus ChatGPT Plus
ID pkdcpohhilpdgdooafpjnenmnhgbmdmh
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh
Mô tả ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
Kích Thước Tệp 352 KB
Số Lần Cài Đặt 2,340
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-05-22
Ngày Phát Hành 2023-01-02
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển zerodocom
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zerodocom/ChatGPT-Plus
URL Trang Trợ Giúp https://github.com/zerodocom/ChatGPT-Plus
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}