ChatGPTx

Shortcut to ChatGPT to help you with your daily tasks

Qu'est-ce que ChatGPTx ?

ChatGPTx est une extension Chrome développée par ph.becking, et sa fonction principale est "Shortcut to ChatGPT to help you with your daily tasks".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPTx

Téléchargez les fichiers d'extension ChatGPTx au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom ChatGPTx ChatGPTx
ID bcekompknmefbgdhaionajkpcehbhkbk
URL Officiel https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk
Description Shortcut to ChatGPT to help you with your daily tasks
Taille du Fichier 17.68 KB
Nombre d'Installations 372
Version Actuelle 0.1.1
Dernière Mise à Jour 2023-01-29
Date de Publication 2023-01-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur ph.becking
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}