chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

Qu'est-ce que chatGPT screenshot ?

chatGPT screenshot est une extension Chrome développée par marc, et sa fonction principale est "Take a nice screenshot of the whole chat GPT conversation".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension chatGPT screenshot

Téléchargez les fichiers d'extension chatGPT screenshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
URL Officiel https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Description Take a nice screenshot of the whole chat GPT conversation
Taille du Fichier 5.94 KB
Nombre d'Installations 3,587
Version Actuelle 0.2
Dernière Mise à Jour 2023-04-15
Date de Publication 2022-12-05
Évaluation 3.44/5 Total 9 Évaluations
Développeur marc
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/marcj/chrome-chatgpt-screenshot-extension
Langues Prises en Charge 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"
            ]
        }
    ]
}