ChatGPTx

Shortcut to ChatGPT to help you with your daily tasks

Τι είναι το ChatGPTx;

Το ChatGPTx είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ph.becking, και η κύρια λειτουργία του είναι "Shortcut to ChatGPT to help you with your daily tasks".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPTx

Λήψη αρχείων επέκτασης ChatGPTx σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Select something in your Chrome browser and use right-click to see the explanation of the selected phrase. Enjoy! 

Cheers, Jap and Piet

Note: This is still the Beta version. Any feedback would be highly appreciated and can be submitted via the following link: https://sites.google.com/view/chatgptx/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPTx ChatGPTx
ID bcekompknmefbgdhaionajkpcehbhkbk
Επίσημο URL https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk
Περιγραφή Shortcut to ChatGPT to help you with your daily tasks
Μέγεθος Αρχείου 17.68 KB
Αριθμός Εγκαταστάσεων 372
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2023-01-29
Ημερομηνία Δημοσίευσης 2023-01-19
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής ph.becking
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPTx",
    "version": "0.1.1",
    "icons": {
        "16": "assets\/ext-icon.png",
        "32": "assets\/ext-icon.png",
        "48": "assets\/ext-icon.png",
        "128": "assets\/ext-icon.png"
    },
    "description": "Shortcut to ChatGPT to help you with your daily tasks",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "ChatGPTx Extension",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}