ShareGPTConvo

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

Cos'è ShareGPTConvo?

ShareGPTConvo è un'estensione di Chrome sviluppata da xikai, e la sua funzione principale è "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ShareGPTConvo

Scarica i file di estensione ShareGPTConvo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        *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.                    

Informazioni di Base sull'Estensione

Nome ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
URL Ufficiale https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Descrizione Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Dimensione del File 47.39 KB
Conteggio Installazioni 18
Versione Corrente 1.1.1
Ultimo Aggiornamento 2024-01-29
Data di Pubblicazione 2023-03-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore xikai
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}