Hey ChatGPT Explain This

Highlight unknown sentence, and let's ChatGPT explain to you

Vad är Hey ChatGPT Explain This?

Hey ChatGPT Explain This är en Chrome-tillägg utvecklad av qaz7821819, och dess huvudfunktion är "Highlight unknown sentence, and let's ChatGPT explain to you".

Tilläggsskärmbilder

Ladda ner Hey ChatGPT Explain This-förlängningens CRX-fil

Ladda ner Hey ChatGPT Explain This-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

                        A Chrome extension (manifest v3) that uses ChatGPT to explain highlighted text.
The usage is same as google translation extension
This extension is open source: https://gitlab.com/warren30815/hey_chatgpt_explain_this                    

Grundläggande Information om Tillägg

Namn Hey ChatGPT Explain This Hey ChatGPT Explain This
ID ncockfahljbgijljglbmmagefbdheofd
Officiell webbadress https://chromewebstore.google.com/detail/hey-chatgpt-explain-this/ncockfahljbgijljglbmmagefbdheofd
Beskrivning Highlight unknown sentence, and let's ChatGPT explain to you
Filstorlek 37.7 KB
Antal Installationer 61
Aktuell Version 0.0.7
Senast Uppdaterad 2023-02-28
Publiceringsdatum 2023-01-30
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare qaz7821819
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.linkedin.com/in/%E7%AB%A3%E7%BF%94-%E8%A8%B1-3188a41a1/
Hjälpsida URL https://www.linkedin.com/in/%E7%AB%A3%E7%BF%94-%E8%A8%B1-3188a41a1/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hey ChatGPT Explain This",
    "description": "Highlight unknown sentence, and let's ChatGPT explain to you",
    "version": "0.0.7",
    "icons": {
        "16": "src\/pages\/assets\/logo-16.png",
        "48": "src\/pages\/assets\/logo-48.png",
        "128": "src\/pages\/assets\/logo-128.png"
    },
    "action": {
        "default_title": "Explain this",
        "default_icon": "src\/pages\/assets\/logo-16.png",
        "default_popup": "src\/pages\/popup\/index.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js"
    },
    "content_scripts": [
        {
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}