Save ChatGPT as PDF
Turn your chats into neatly formatted PDF.
Qu'est-ce que Save ChatGPT as PDF ?
Save ChatGPT as PDF est une extension Chrome développée par https://pdfcrowd.com, et sa fonction principale est "Turn your chats into neatly formatted PDF.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save ChatGPT as PDF
Téléchargez les fichiers d'extension Save ChatGPT as PDF au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Save ChatGPT as PDF |
ID | ccjfggejcoobknjolglgmfhoeneafhhm |
URL Officiel | https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm |
Description | Turn your chats into neatly formatted PDF. |
Taille du Fichier | 157 KB |
Nombre d'Installations | 539 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2024-02-29 |
Date de Publication | 2024-01-11 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | https://pdfcrowd.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://pdfcrowd.com/save-chatgpt-as-pdf/ |
URL de la Page d'Aide | https://pdfcrowd.com/contact/ |
Langues Prises en Charge | 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" } |