ChatGPT to Markdown
A Chrome extension to save ChatGPT Q&A page as markdown
What is ChatGPT to Markdown?
ChatGPT to Markdown is a Chrome extension developed by jsh9.github, and its main feature is "A Chrome extension to save ChatGPT Q&A page as markdown".
Extension Screenshots
Download ChatGPT to Markdown Extension CRX File
Download ChatGPT to Markdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ChatGPT to Markdown |
ID | ajogklnjecgpjfalkokkencdlbnhiohb |
Official URL | https://chromewebstore.google.com/detail/chatgpt-to-markdown/ajogklnjecgpjfalkokkencdlbnhiohb |
Description | A Chrome extension to save ChatGPT Q&A page as markdown |
File Size | 411 KB |
Installation Count | 58 |
Current Version | 0.0.8 |
Last Updated | 2023-09-15 |
Publish Date | 2023-05-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | jsh9.github |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jsh9/chatgpt-to-markdown |
Supported Languages | 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" } } } |