ChatGPT Deeplink
Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Qu'est-ce que ChatGPT Deeplink ?
ChatGPT Deeplink est une extension Chrome développée par Paul Arterburn, et sa fonction principale est "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Deeplink
Téléchargez les fichiers d'extension ChatGPT Deeplink 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 adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).
Informations de Base sur l'Extension
Nom | ChatGPT Deeplink |
ID | bmkbpmkcppdmkdbpihmijgeilchgeapo |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo |
Description | Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation. |
Taille du Fichier | 12.55 KB |
Nombre d'Installations | 83 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-08-08 |
Date de Publication | 2023-08-07 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Paul Arterburn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://chat.openai.com |
URL de la Page d'Aide | https://twitter.com/parterburn |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Deeplink", "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.", "version": "1.1", "homepage_url": "https:\/\/chat.openai.com", "omnibox": { "keyword": "ai" }, "permissions": [ "scripting", "webNavigation", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_popup": "settings.html" } } |