ChatGPT Shortcut

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

Cos'è ChatGPT Shortcut?

ChatGPT Shortcut è un'estensione di Chrome sviluppata da Patrik Martinko, e la sua funzione principale è "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Shortcut

Scarica i file di estensione ChatGPT Shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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}                    

Informazioni di Base sull'Estensione

Nome ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Descrizione Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Dimensione del File 28.12 KB
Conteggio Installazioni 1,680
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-08-07
Data di Pubblicazione 2023-01-27
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Patrik Martinko
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/patrik-martinko/app-chatgpt-shortcut
URL della Pagina di Aiuto https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Lingue Supportate 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"
    }
}