ChatGPT Copy as Markdown
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
Qu'est-ce que ChatGPT Copy as Markdown ?
ChatGPT Copy as Markdown est une extension Chrome développée par mild7caloriemategreentea, et sa fonction principale est "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Copy as Markdown
Téléchargez les fichiers d'extension ChatGPT Copy as Markdown 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
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing
Informations de Base sur l'Extension
Nom | ChatGPT Copy as Markdown |
ID | abnaignolljmbhljfenjgedomihcdkmn |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn |
Description | This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut… |
Taille du Fichier | 87.61 KB |
Nombre d'Installations | 95 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2023-04-25 |
Date de Publication | 2023-03-20 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | mild7caloriemategreentea |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Copy as Markdown", "version": "0.0.3", "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "action": [], "content_scripts": [ { "js": [ "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js" ], "matches": [ "https:\/\/chat.openai.com\/c\/*" ] } ], "icons": { "16": "image\/16x16.png", "48": "image\/48x48.png", "128": "image\/128x128.png" }, "commands": { "chatgpt-copy-as-markdown": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Copy Conversation with ChatGPT as markdown" } }, "permissions": [ "activeTab", "clipboardWrite" ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "assets\/logger.33b921cf.js", "assets\/content-script.ts.e5f55049.js" ], "use_dynamic_url": true } ] } |