ChatGPT Chat Extractor

A basic chat text Extractor

O que é ChatGPT Chat Extractor?

ChatGPT Chat Extractor é uma extensão do Chrome desenvolvida por Invictus, e sua principal característica é "A basic chat text Extractor".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ChatGPT Chat Extractor

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

                        When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time.
This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.                    

Informações Básicas da Extensão

Nome ChatGPT Chat Extractor ChatGPT Chat Extractor
ID ppkdabpmgbglpnghdbmnemflamdfgdkj
URL Oficial https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj
Descrição A basic chat text Extractor
Tamanho do Arquivo 27.39 KB
Contagem de Instalações 31
Versão Atual 0.0.20
Última Atualização 2023-02-07
Data de Publicação 2023-02-06
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Invictus
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.buymeacoffee.com/invic1us
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Chat Extractor",
    "description": "A basic chat text Extractor",
    "version": "0.0.20",
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}