ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

O que é ChatGPT Screentshot?

ChatGPT Screentshot é uma extensão do Chrome desenvolvida por landicefu, e sua principal característica é "Add a button to download full screenshot of ChatGPT conversation".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão ChatGPT Screentshot

Baixe arquivos de extensão ChatGPT Screentshot 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

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

Informações Básicas da Extensão

Nome ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
URL Oficial https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Descrição Add a button to download full screenshot of ChatGPT conversation
Tamanho do Arquivo 56.9 KB
Contagem de Instalações 145
Versão Atual 0.3
Última Atualização 2022-12-14
Data de Publicação 2022-12-11
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor landicefu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}