ShareGPTConvo

Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.

O que é ShareGPTConvo?

ShareGPTConvo é uma extensão do Chrome desenvolvida por xikai, e sua principal característica é "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ShareGPTConvo

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

                        *Adapted to the latest version of ChatGPT!
Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style for viewing on mobile and desktop devices.                    

Informações Básicas da Extensão

Nome ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
URL Oficial https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Descrição Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Tamanho do Arquivo 47.39 KB
Contagem de Instalações 18
Versão Atual 1.1.1
Última Atualização 2024-01-29
Data de Publicação 2023-03-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor xikai
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ShareGPTConvo",
    "version": "1.1.1",
    "description": "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Share GPT Convo",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}