ChatGPT Browser Extension

Get ChatGPT Within Your Favorite Search Engines, upvote good answers, provide feedback, save/cache answers for later.

Co je ChatGPT Browser Extension?

ChatGPT Browser Extension je rozšíření Chrome vyvinuté Taylor, a jeho hlavní funkcí je „Get ChatGPT Within Your Favorite Search Engines, upvote good answers, provide feedback, save/cache answers for later.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ChatGPT Browser Extension

Stáhněte si soubory rozšíření ChatGPT Browser Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This browser extension provides ChatGPT answers on Your Google Results from your favorite browser. It is an enhanced version of ChatGPT for Google. It offers additional features such as cached results for improved performance as well as ability to save/edit answers and provide answer feedback in the form of upvotes (Grepper style upvoting/saving system).                    

Základní Informace o Rozšíření

Název ChatGPT Browser Extension ChatGPT Browser Extension
ID nhddlbkakdlmkogdnmbadepphblklknl
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-browser-extension/nhddlbkakdlmkogdnmbadepphblklknl
Popis Get ChatGPT Within Your Favorite Search Engines, upvote good answers, provide feedback, save/cache answers for later.
Velikost souboru 639 KB
Počet instalací 5,230
Aktuální Verze 1.1.4
Poslední Aktualizace 2022-12-13
Datum Vydání 2022-12-06
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář Taylor
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/TaylorHawkes/ChatGPTBrowserExtension
URL Stránky Nápovědy https://github.com/TaylorHawkes/ChatGPTBrowserExtension
URL Stránky Zásad Ochrany Soukromí https://www.codegrepper.com/privacy-policy.php
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Browser Extension",
    "description": "Get ChatGPT Within Your Favorite Search Engines, upvote good answers, provide feedback, save\/cache answers for later.",
    "version": "1.1.4",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/*.codegrepper.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/search*"
            ],
            "include_globs": [
                "*.google.*\/*"
            ],
            "js": [
                "content-script\/index.js",
                "prism\/prism.js"
            ],
            "css": [
                "main.css",
                "codemirror\/lib\/codemirror.css",
                "codemirror\/theme\/prism-okaidia.css",
                "prism\/prism.css"
            ]
        }
    ]
}