ChatGPT Shortcut

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

Co to jest ChatGPT Shortcut?

ChatGPT Shortcut to rozszerzenie Chrome opracowane przez Patrik Martinko, a jego główną funkcją jest „Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Shortcut

Pobierz pliki rozszerzeń ChatGPT Shortcut w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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}                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Opis Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Rozmiar pliku 28.12 KB
Liczba instalacji 1,680
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2023-08-07
Data Publikacji 2023-01-27
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Patrik Martinko
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/patrik-martinko/app-chatgpt-shortcut
Adres URL Strony Pomocy https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Obsługiwane Języki 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"
    }
}