ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Was ist ChatGPT Shortcut?
ChatGPT Shortcut ist eine Chrome-Erweiterung, die von Patrik Martinko entwickelt wurde, und ihr Hauptmerkmal ist "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Erweiterungsscreenshots
ChatGPT Shortcut-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPT Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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}
Grundlegende Informationen zur Erweiterung
Name | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
Offizielle URL | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Beschreibung | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Dateigröße | 28.12 KB |
Installationsanzahl | 1,680 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2023-08-07 |
Veröffentlichungsdatum | 2023-01-27 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | Patrik Martinko |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/patrik-martinko/app-chatgpt-shortcut |
Hilfeseite URL | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Unterstützte Sprachen | 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" } } |