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.
擴展基本資訊
名稱 | Save ChatGPT as PDF |
ID | ccjfggejcoobknjolglgmfhoeneafhhm |
官方網址 | 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" } |