chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

Cos'è chatGPT screenshot?

chatGPT screenshot è un'estensione di Chrome sviluppata da marc, e la sua funzione principale è "Take a nice screenshot of the whole chat GPT conversation".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione chatGPT screenshot

Scarica i file di estensione chatGPT screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Descrizione Take a nice screenshot of the whole chat GPT conversation
Dimensione del File 5.94 KB
Conteggio Installazioni 3,587
Versione Corrente 0.2
Ultimo Aggiornamento 2023-04-15
Data di Pubblicazione 2022-12-05
Valutazione 3.44/5 Totale 9 Valutazioni
Sviluppatore marc
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marcj/chrome-chatgpt-screenshot-extension
Lingue Supportate 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"
            ]
        }
    ]
}