ChatGPT Chat Extractor
A basic chat text Extractor
Qu'est-ce que ChatGPT Chat Extractor ?
ChatGPT Chat Extractor est une extension Chrome développée par Invictus, et sa fonction principale est "A basic chat text Extractor".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Chat Extractor
Téléchargez les fichiers d'extension ChatGPT Chat Extractor 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
When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time. This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.
Informations de Base sur l'Extension
Nom | |
ID | ppkdabpmgbglpnghdbmnemflamdfgdkj |
URL Officiel | https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj |
Description | A basic chat text Extractor |
Taille du Fichier | 27.39 KB |
Nombre d'Installations | 31 |
Version Actuelle | 0.0.20 |
Dernière Mise à Jour | 2023-02-07 |
Date de Publication | 2023-02-06 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Invictus |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://www.buymeacoffee.com/invic1us |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Chat Extractor", "description": "A basic chat text Extractor", "version": "0.0.20", "action": [], "web_accessible_resources": [ { "resources": [ "images\/icon32.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "permissions": [ "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 3 } |