Save ChatGPT as PDF
Turn your chats into neatly formatted PDF.
Save ChatGPT as PDFとは何ですか?
Save ChatGPT as PDFはhttps://pdfcrowd.comによって開発されたChromeの拡張機能で、その主な機能は「Turn your chats into neatly formatted PDF.」です。
拡張機能のスクリーンショット
Save ChatGPT as PDF拡張機能のCRXファイルをダウンロード
Save ChatGPT as PDF拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        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.                     拡張機能の基本情報
| 名前 |  | 
| ID | ccjfggejcoobknjolglgmfhoeneafhhm | 
| 公式URL | https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm | 
| 説明 | Turn your chats into neatly formatted PDF. | 
| ファイルサイズ | 157 KB | 
| インストール数 | 539 | 
| 現在のバージョン | 1.5 | 
| 最終更新日 | 2024-02-29 | 
| 公開日 | 2024-01-11 | 
| 評価 | 5.00/5 合計 5 レビュー | 
| 開発者 | https://pdfcrowd.com | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | https://pdfcrowd.com/save-chatgpt-as-pdf/ | 
| ヘルプページのURL | https://pdfcrowd.com/contact/ | 
| 対応言語 | 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"
} | |