Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Was ist Save ChatGPT as PDF?

Save ChatGPT as PDF ist eine Chrome-Erweiterung, die von https://pdfcrowd.com entwickelt wurde, und ihr Hauptmerkmal ist "Turn your chats into neatly formatted PDF.".

Erweiterungsscreenshots

screenshot

Save ChatGPT as PDF-Erweiterungs-CRX-Datei herunterladen

Laden Sie Save ChatGPT as PDF-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
Offizielle URL https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
Beschreibung Turn your chats into neatly formatted PDF.
Dateigröße 157 KB
Installationsanzahl 539
Aktuelle Version 1.5
Letztes Update 2024-02-29
Veröffentlichungsdatum 2024-01-11
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://pdfcrowd.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://pdfcrowd.com/save-chatgpt-as-pdf/
Hilfeseite URL https://pdfcrowd.com/contact/
Unterstützte Sprachen 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"
}