Save ChatGPT as PDF
Turn your chats into neatly formatted PDF.
Vad är Save ChatGPT as PDF?
Save ChatGPT as PDF är en Chrome-tillägg utvecklad av https://pdfcrowd.com, och dess huvudfunktion är "Turn your chats into neatly formatted PDF.".
Tilläggsskärmbilder
Ladda ner Save ChatGPT as PDF-förlängningens CRX-fil
Ladda ner Save ChatGPT as PDF-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Save ChatGPT as PDF |
ID | ccjfggejcoobknjolglgmfhoeneafhhm |
Officiell webbadress | https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm |
Beskrivning | Turn your chats into neatly formatted PDF. |
Filstorlek | 157 KB |
Antal Installationer | 539 |
Aktuell Version | 1.5 |
Senast Uppdaterad | 2024-02-29 |
Publiceringsdatum | 2024-01-11 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | https://pdfcrowd.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://pdfcrowd.com/save-chatgpt-as-pdf/ |
Hjälpsida URL | https://pdfcrowd.com/contact/ |
Stödda Språk | 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" } |