ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
O que é ChatGPT Shortcut?
ChatGPT Shortcut é uma extensão do Chrome desenvolvida por Patrik Martinko, e sua principal característica é "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Shortcut
Baixe arquivos de extensão ChatGPT Shortcut 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 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}
Informações Básicas da Extensão
Nome | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Descrição | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Tamanho do Arquivo | 28.12 KB |
Contagem de Instalações | 1,680 |
Versão Atual | 1.0.4 |
Última Atualização | 2023-08-07 |
Data de Publicação | 2023-01-27 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | Patrik Martinko |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/patrik-martinko/app-chatgpt-shortcut |
URL da Página de Ajuda | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Idiomas Suportados | 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" } } |