ChatGPT to Markdown
A Chrome extension to save ChatGPT Q&A page as markdown
Cos'è ChatGPT to Markdown?
ChatGPT to Markdown è un'estensione di Chrome sviluppata da jsh9.github, e la sua funzione principale è "A Chrome extension to save ChatGPT Q&A page as markdown".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT to Markdown
Scarica i file di estensione ChatGPT to Markdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension lets you download the ChatGPT Q&A page to your hard drive. If you click on the icon of this extension or press Alt + Shift + 5, the current ChatGPT Q&A page will be saved into a markdown file into your Downloads folder.
Informazioni di Base sull'Estensione
Nome | ChatGPT to Markdown |
ID | ajogklnjecgpjfalkokkencdlbnhiohb |
URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-to-markdown/ajogklnjecgpjfalkokkencdlbnhiohb |
Descrizione | A Chrome extension to save ChatGPT Q&A page as markdown |
Dimensione del File | 411 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 0.0.8 |
Ultimo Aggiornamento | 2023-09-15 |
Data di Pubblicazione | 2023-05-03 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | jsh9.github |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jsh9/chatgpt-to-markdown |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT to Markdown", "version": "0.0.8", "description": "A Chrome extension to save ChatGPT Q&A page as markdown", "permissions": [ "activeTab", "scripting" ], "action": { "default_icon": ".\/icon_drawing_scripts\/chatgpt_icon_v4.png" }, "icons": { "16": ".\/icon_drawing_scripts\/chatgpt_icon_v4.png", "48": ".\/icon_drawing_scripts\/chatgpt_icon_v4.png", "128": ".\/icon_drawing_scripts\/chatgpt_icon_v4.png" }, "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+5", "mac": "Alt+Shift+5" }, "description": "Save ChatGPT Q&A" } } } |