ChatGPT Shortcut

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

Hvad er ChatGPT Shortcut?

ChatGPT Shortcut er en Chrome-udvidelse udviklet af Patrik Martinko, og dens hovedfunktion er "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".

Udvidelsesskærmbilleder

screenshot

Download ChatGPT Shortcut-udvidelses-CRX-fil

Download ChatGPT Shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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}                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
Officiel URL https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Beskrivelse Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Filstørrelse 28.12 KB
Antal Installationer 1,680
Nuværende Version 1.0.4
Senest Opdateret 2023-08-07
Udgivelsesdato 2023-01-27
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Patrik Martinko
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/patrik-martinko/app-chatgpt-shortcut
Hjælpeside-URL https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Understøttede Sprog 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"
    }
}