chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
O que é chatGPT screenshot?
chatGPT screenshot é uma extensão do Chrome desenvolvida por marc, e sua principal característica é "Take a nice screenshot of the whole chat GPT conversation".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão chatGPT screenshot
Baixe arquivos de extensão chatGPT screenshot 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
OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool). This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.
Informações Básicas da Extensão
Nome | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Descrição | Take a nice screenshot of the whole chat GPT conversation |
Tamanho do Arquivo | 5.94 KB |
Contagem de Instalações | 3,587 |
Versão Atual | 0.2 |
Última Atualização | 2023-04-15 |
Data de Publicação | 2022-12-05 |
Classificação | 3.44/5 Total de 9 Avaliações |
Desenvolvedor | marc |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "chatGPT screenshot", "action": [], "manifest_version": 3, "version": "0.2", "description": "Take a nice screenshot of the whole chat GPT conversation", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ] } |