ChatGPT Shortcut

Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

Co je ChatGPT Shortcut?

ChatGPT Shortcut je rozšíření Chrome vyvinuté Patrik Martinko, a jeho hlavní funkcí je „Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ChatGPT Shortcut

Stáhněte si soubory rozšíření ChatGPT Shortcut 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 is especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ...

Structure of query: https://chat.openai.com/chat?q={query}                    

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

Název ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Popis Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Velikost souboru 28.12 KB
Počet instalací 1,680
Aktuální Verze 1.0.4
Poslední Aktualizace 2023-08-07
Datum Vydání 2023-01-27
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář Patrik Martinko
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/patrik-martinko/app-chatgpt-shortcut
URL Stránky Nápovědy https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Shortcut",
    "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}