ChatGPT Extension
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
O que é ChatGPT Extension?
ChatGPT Extension é uma extensão do Chrome desenvolvida por Oliver N., e sua principal característica é "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Extension
Baixe arquivos de extensão ChatGPT Extension 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 extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.
Informações Básicas da Extensão
Nome | ChatGPT Extension |
ID | ehigecokdaejpecogfefhmoemlapfjko |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko |
Descrição | This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. |
Tamanho do Arquivo | 281 KB |
Contagem de Instalações | 716 |
Versão Atual | 0.1.0 |
Última Atualização | 2022-12-21 |
Data de Publicação | 2022-12-21 |
Classificação | 1.00/5 Total de 2 Avaliações |
Desenvolvedor | Oliver N. |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/iOliverNguyen/chatgpt-box-extension |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": [], "background": { "service_worker": "background.js" }, "content_scripts": [ { "css": [ "content_script.css" ], "js": [ "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.", "host_permissions": [ "https:\/\/*\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon96.png", "128": "icon128.png", "512": "icon512.png" }, "manifest_version": 3, "name": "ChatGPT Extension", "version": "0.1.0", "web_accessible_resources": [ { "extension_ids": [], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "assets\/*" ] } ] } |