ChatGPT Deeplink
Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
O que é ChatGPT Deeplink?
ChatGPT Deeplink é uma extensão do Chrome desenvolvida por Paul Arterburn, e sua principal característica é "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Deeplink
Baixe arquivos de extensão ChatGPT Deeplink no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | ChatGPT Deeplink |
ID | bmkbpmkcppdmkdbpihmijgeilchgeapo |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo |
Descrição | Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation. |
Tamanho do Arquivo | 12.55 KB |
Contagem de Instalações | 83 |
Versão Atual | 1.1 |
Última Atualização | 2023-08-08 |
Data de Publicação | 2023-08-07 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Paul Arterburn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://chat.openai.com |
URL da Página de Ajuda | https://twitter.com/parterburn |
Idiomas Suportados | 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" } } |