ChatGPTx

Shortcut to ChatGPT to help you with your daily tasks

Vad är ChatGPTx?

ChatGPTx är en Chrome-tillägg utvecklad av ph.becking, och dess huvudfunktion är "Shortcut to ChatGPT to help you with your daily tasks".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner ChatGPTx-förlängningens CRX-fil

Ladda ner ChatGPTx-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn ChatGPTx ChatGPTx
ID bcekompknmefbgdhaionajkpcehbhkbk
Officiell webbadress https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk
Beskrivning Shortcut to ChatGPT to help you with your daily tasks
Filstorlek 17.68 KB
Antal Installationer 372
Aktuell Version 0.1.1
Senast Uppdaterad 2023-01-29
Publiceringsdatum 2023-01-19
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ph.becking
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}