ShareGPTConvo

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

Vad är ShareGPTConvo?

ShareGPTConvo är en Chrome-tillägg utvecklad av xikai, och dess huvudfunktion är "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ShareGPTConvo-förlängningens CRX-fil

Ladda ner ShareGPTConvo-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        *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äggande Information om Tillägg

Namn ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
Officiell webbadress https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Beskrivning Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Filstorlek 47.39 KB
Antal Installationer 18
Aktuell Version 1.1.1
Senast Uppdaterad 2024-01-29
Publiceringsdatum 2023-03-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare xikai
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}