Save ChatGPT as PDF
Turn your chats into neatly formatted PDF.
Co to jest Save ChatGPT as PDF?
Save ChatGPT as PDF to rozszerzenie Chrome opracowane przez https://pdfcrowd.com, a jego główną funkcją jest „Turn your chats into neatly formatted PDF.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Save ChatGPT as PDF
Pobierz pliki rozszerzeń Save ChatGPT as PDF w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |  | 
| ID | ccjfggejcoobknjolglgmfhoeneafhhm | 
| Oficjalny URL | https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm | 
| Opis | Turn your chats into neatly formatted PDF. | 
| Rozmiar pliku | 157 KB | 
| Liczba instalacji | 539 | 
| Aktualna Wersja | 1.5 | 
| Ostatnia Aktualizacja | 2024-02-29 | 
| Data Publikacji | 2024-01-11 | 
| Ocena | 5.00/5 Łącznie 5 Oceny | 
| Deweloper | https://pdfcrowd.com | 
| [email protected] | |
| Typ Płatności | free | 
| Strona Rozszerzenia | https://pdfcrowd.com/save-chatgpt-as-pdf/ | 
| Adres URL Strony Pomocy | https://pdfcrowd.com/contact/ | 
| Obsługiwane Języki | 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"
} | |