ShareGPTConvo

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

Τι είναι το ShareGPTConvo;

Το ShareGPTConvo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον xikai, και η κύρια λειτουργία του είναι "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ShareGPTConvo

Λήψη αρχείων επέκτασης ShareGPTConvo σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
Επίσημο URL https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Περιγραφή Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Μέγεθος Αρχείου 47.39 KB
Αριθμός Εγκαταστάσεων 18
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2024-01-29
Ημερομηνία Δημοσίευσης 2023-03-28
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής xikai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}