ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

Qu'est-ce que ChatGPT Screentshot ?

ChatGPT Screentshot est une extension Chrome développée par landicefu, et sa fonction principale est "Add a button to download full screenshot of ChatGPT conversation".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Screentshot

Téléchargez les fichiers d'extension ChatGPT Screentshot 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

                        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                    

Informations de Base sur l'Extension

Nom ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
URL Officiel https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Description Add a button to download full screenshot of ChatGPT conversation
Taille du Fichier 56.9 KB
Nombre d'Installations 145
Version Actuelle 0.3
Dernière Mise à Jour 2022-12-14
Date de Publication 2022-12-11
Évaluation 3.50/5 Total 2 Évaluations
Développeur landicefu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}