ChatGPT Plus

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

Что такое ChatGPT Plus?

ChatGPT Plus - это расширение Chrome, разработанное zerodocom, и его основная функция - "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ChatGPT Plus

Скачайте файлы расширений ChatGPT Plus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
        }
    ]
}