Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Cos'è Save ChatGPT as PDF?

Save ChatGPT as PDF è un'estensione di Chrome sviluppata da https://pdfcrowd.com, e la sua funzione principale è "Turn your chats into neatly formatted PDF.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Save ChatGPT as PDF

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

                        The add-on adds a button to the ChatGPT webpage and with just a quick click, you can turn your chats into neatly formatted PDF files. It's super easy to use - perfect for keeping or sharing your interactions. The add-on uses the PDFCrowd API to create PDF.                    

Informazioni di Base sull'Estensione

Nome Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
URL Ufficiale https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
Descrizione Turn your chats into neatly formatted PDF.
Dimensione del File 157 KB
Conteggio Installazioni 539
Versione Corrente 1.5
Ultimo Aggiornamento 2024-02-29
Data di Pubblicazione 2024-01-11
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore https://pdfcrowd.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://pdfcrowd.com/save-chatgpt-as-pdf/
URL della Pagina di Aiuto https://pdfcrowd.com/contact/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save ChatGPT as PDF",
    "version": "1.5",
    "description": "Turn your chats into neatly formatted PDF.",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "common.js",
                "request.js"
            ]
        }
    ],
    "minimum_chrome_version": "100"
}