chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

Τι είναι το chatGPT screenshot;

Το chatGPT screenshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον marc, και η κύρια λειτουργία του είναι "Take a nice screenshot of the whole chat GPT conversation".

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

screenshot

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

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

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

                        OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool).

This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.                    

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

Όνομα chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Περιγραφή Take a nice screenshot of the whole chat GPT conversation
Μέγεθος Αρχείου 5.94 KB
Αριθμός Εγκαταστάσεων 3,587
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2023-04-15
Ημερομηνία Δημοσίευσης 2022-12-05
Αξιολόγηση 3.44/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής marc
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/marcj/chrome-chatgpt-screenshot-extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chatGPT screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Take a nice screenshot of the whole chat GPT conversation",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}