ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

Hvad er ChatGPT Screentshot?

ChatGPT Screentshot er en Chrome-udvidelse udviklet af landicefu, og dens hovedfunktion er "Add a button to download full screenshot of ChatGPT conversation".

Udvidelsesskærmbilleder

screenshot
screenshot

Download ChatGPT Screentshot-udvidelses-CRX-fil

Download ChatGPT Screentshot-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
Officiel URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Beskrivelse Add a button to download full screenshot of ChatGPT conversation
Filstørrelse 56.9 KB
Antal Installationer 145
Nuværende Version 0.3
Senest Opdateret 2022-12-14
Udgivelsesdato 2022-12-11
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler landicefu
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
            ]
        }
    ]
}