ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Qu'est-ce que ChatGPT Shortcut ?
ChatGPT Shortcut est une extension Chrome développée par Patrik Martinko, et sa fonction principale est "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Shortcut
Téléchargez les fichiers d'extension ChatGPT Shortcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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}
Informations de Base sur l'Extension
Nom | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Description | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Taille du Fichier | 28.12 KB |
Nombre d'Installations | 1,680 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2023-08-07 |
Date de Publication | 2023-01-27 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | Patrik Martinko |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/patrik-martinko/app-chatgpt-shortcut |
URL de la Page d'Aide | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Langues Prises en Charge | 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" } } |