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