smartGPT Multi-Tab Extension
A Chrome extension to interact with ChatGPT across multiple tabs
O que é smartGPT Multi-Tab Extension?
smartGPT Multi-Tab Extension é uma extensão do Chrome desenvolvida por The Jade Authors, e sua principal característica é "A Chrome extension to interact with ChatGPT across multiple tabs".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão smartGPT Multi-Tab Extension
Baixe arquivos de extensão smartGPT Multi-Tab 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
The smartGPT Multi-Tab Resolver is a Chrome extension that allows users to interact with ChatGPT across multiple tabs to get more refined answers to their questions. This follows some of the ideas in "An automatically discovered chain-of-thought prompt generalizes to novel models and datasets" Hebenstreit, Praas, Kiesewetter, Samwald. The name was coined by the Youtube channel AI Explained. We intend to develop this project to allow a wide selection of AI models, including but not limited to Vicuna and other Llama based models. The project is open source and its Github page is here: https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension
Informações Básicas da Extensão
Nome | smartGPT Multi-Tab Extension |
ID | pinboagpmeoickkeeaghhbicpbjpeaba |
URL Oficial | https://chromewebstore.google.com/detail/smartgpt-multi-tab-extens/pinboagpmeoickkeeaghhbicpbjpeaba |
Descrição | A Chrome extension to interact with ChatGPT across multiple tabs |
Tamanho do Arquivo | 29.63 KB |
Contagem de Instalações | 37 |
Versão Atual | 1.1 |
Última Atualização | 2023-05-13 |
Data de Publicação | 2023-05-11 |
Desenvolvedor | The Jade Authors |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "smartGPT Multi-Tab Extension", "version": "1.1", "description": "A Chrome extension to interact with ChatGPT across multiple tabs", "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_scripts.js" ] } ], "background": { "service_worker": "background.js" } } |