Spellbook for OpenAI Chat
Quickly cast a spell in chat
O que é Spellbook for OpenAI Chat?
Spellbook for OpenAI Chat é uma extensão do Chrome desenvolvida por mis101247, e sua principal característica é "Quickly cast a spell in chat".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spellbook for OpenAI Chat
Baixe arquivos de extensão Spellbook for OpenAI Chat 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 tool helps users quickly send selected text to ChatGPT for processing. Users simply right-click on the selected text, choose Send to ChatGPT, and ChatGPT will process the text and return the results. This tool saves users time on typing and searching for information, while also improving their work efficiency. If you have any questions or feedback, please feel free to contact us. We are happy to assist you.
Informações Básicas da Extensão
Nome | Spellbook for OpenAI Chat |
ID | dkjphoginefnolhlimdopaflffoddffo |
URL Oficial | https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo |
Descrição | Quickly cast a spell in chat |
Tamanho do Arquivo | 136 KB |
Contagem de Instalações | 171 |
Versão Atual | 0.1.4 |
Última Atualização | 2023-04-13 |
Data de Publicação | 2023-03-07 |
Desenvolvedor | mis101247 |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Spellbook for OpenAI Chat", "description": "Quickly cast a spell in chat", "version": "0.1.4", "permissions": [ "contextMenus", "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_popup": "popup\/index.html" }, "content_scripts": [ { "js": [ "openai\/action.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |