ShareGPTConvo

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

Hvad er ShareGPTConvo?

ShareGPTConvo er en Chrome-udvidelse udviklet af xikai, og dens hovedfunktion er "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download ShareGPTConvo-udvidelses-CRX-fil

Download ShareGPTConvo-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
Officiel URL https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Beskrivelse Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Filstørrelse 47.39 KB
Antal Installationer 18
Nuværende Version 1.1.1
Senest Opdateret 2024-01-29
Udgivelsesdato 2023-03-28
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler xikai
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}