ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

Τι είναι το ChatGPT Screentshot;

Το ChatGPT Screentshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον landicefu, και η κύρια λειτουργία του είναι "Add a button to download full screenshot of ChatGPT conversation".

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

screenshot
screenshot

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

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

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

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

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

Όνομα ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
Επίσημο URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Περιγραφή Add a button to download full screenshot of ChatGPT conversation
Μέγεθος Αρχείου 56.9 KB
Αριθμός Εγκαταστάσεων 145
Τρέχουσα Έκδοση 0.3
Τελευταία Ενημέρωση 2022-12-14
Ημερομηνία Δημοσίευσης 2022-12-11
Αξιολόγηση 3.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής landicefu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}