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.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Save ChatGPT as PDF Save ChatGPT as 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
电子邮箱 [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"
}