Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Wat is Save ChatGPT as PDF?

Save ChatGPT as PDF is een Chrome-extensie ontwikkeld door https://pdfcrowd.com, en de belangrijkste functie is "Turn your chats into neatly formatted PDF.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Save ChatGPT as PDF

Download Save ChatGPT as PDF-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
Officiële URL https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
Beschrijving Turn your chats into neatly formatted PDF.
Bestandsgrootte 157 KB
Aantal Installaties 539
Huidige Versie 1.5
Laatst Bijgewerkt 2024-02-29
Publicatiedatum 2024-01-11
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar https://pdfcrowd.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://pdfcrowd.com/save-chatgpt-as-pdf/
Help Pagina-URL https://pdfcrowd.com/contact/
Ondersteunde Talen 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"
}