ChatGPT Plus

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

Wat is ChatGPT Plus?

ChatGPT Plus is een Chrome-extensie ontwikkeld door zerodocom, en de belangrijkste functie is "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ChatGPT Plus

Download ChatGPT Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam ChatGPT Plus ChatGPT Plus
ID pkdcpohhilpdgdooafpjnenmnhgbmdmh
Officiële URL https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh
Beschrijving ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
Bestandsgrootte 352 KB
Aantal Installaties 2,340
Huidige Versie 1.0.2
Laatst Bijgewerkt 2023-05-22
Publicatiedatum 2023-01-02
Beoordeling 4.00/5 Totaal 5 Beoordelingen
Ontwikkelaar zerodocom
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/zerodocom/ChatGPT-Plus
Help Pagina-URL https://github.com/zerodocom/ChatGPT-Plus
Ondersteunde Talen 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
        }
    ]
}