Save ChatGPT Transcript

Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.

Cos'è Save ChatGPT Transcript?

Save ChatGPT Transcript è un'estensione di Chrome sviluppata da H2W Ventures, e la sua funzione principale è "Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Save ChatGPT Transcript

Scarica i file di estensione Save ChatGPT Transcript 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

                        Easy one-click save ChatGPT transcript as a local HTML file with user/AI highlighting. Choose your own filename. No data saved remotely, privacy ensured.                    

Informazioni di Base sull'Estensione

Nome Save ChatGPT Transcript Save ChatGPT Transcript
ID hkclgbgcgdmlopmnbakdclgpdnklabcd
URL Ufficiale https://chromewebstore.google.com/detail/save-chatgpt-transcript/hkclgbgcgdmlopmnbakdclgpdnklabcd
Descrizione Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.
Dimensione del File 8.23 KB
Conteggio Installazioni 263
Versione Corrente 1.1
Ultimo Aggiornamento 2023-03-17
Data di Pubblicazione 2023-02-20
Valutazione 4.17/5 Totale 6 Valutazioni
Sviluppatore H2W Ventures
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save ChatGPT Transcript",
    "version": "1.1",
    "description": "Save ChatGPT transcript as an HTML file with user\/AI highlighting. Choose your own filename.",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Save ChatGPT Transcript"
    },
    "background": {
        "service_worker": "popup.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128x128.png"
    }
}