Markdown Preview Plus
Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload
What is Markdown Preview Plus?
Markdown Preview Plus is a Chrome extension developed by https://www.ooso.net, and its main feature is "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload".
Extension Screenshots
Download Markdown Preview Plus Extension CRX File
Download Markdown Preview Plus 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
Automatically parses markdown files (.md) into HTML with live reload Usage: 1. Install extension from webstore (creates no new UI) 2. Check "Allow access to file URLs" in chrome://extensions listing: 3. Open local or remote .md file in Chrome. 4. See nicely formatted HTML! Note: The auto reload feature is disabled default. ## Features * Support auto reload. * Support external css file. * Customize theme for every md file. * Support github flavored markdown. * Export nicely formatted HTML. * Support render Katex, Mermaid. The extension is open source. https://github.com/volca/markdown-preview ## Release Notes ### 0.8.5 ### * Fixes the TOC feature * Upgrade the mermaid lib to v10.8.0 ### 0.8.4 ### * Add more description for options * Update library mermaid, marked to latest ### 0.8.3 ### Fixes a bug for highlight code ### 0.8.2 ### Restore plantuml rendering capability ### 0.8.1 ### * Update mermaid to v10.2.0 * Update katex to latest version * Update marked to v5.0.2 * Remove supports for sequence, puml and flow. Use mermaid instead
Extension Basic Information
Name | Markdown Preview Plus |
ID | febilkbfcbhebfnokafefeacimjdckgl |
Official URL | https://chromewebstore.google.com/detail/markdown-preview-plus/febilkbfcbhebfnokafefeacimjdckgl |
Description | Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload |
File Size | 2.57 MB |
Installation Count | 104,180 |
Current Version | 0.8.5 |
Last Updated | 2024-03-04 |
Publish Date | 2020-05-18 |
Rating | 4.10/5 Total 228 Ratings |
Developer | https://www.ooso.net |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/volca/markdown-preview |
Help Page URL | https://github.com/volca/markdown-preview/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Markdown Preview Plus", "version": "0.8.5", "manifest_version": 3, "description": "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload", "icons": { "128": "images\/icon.png", "48": "images\/icon.png", "16": "images\/icon.png" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*.*md*", "file:\/\/*\/*.*MD*", "file:\/\/*\/*.text", "file:\/\/*\/*.markdown*", "file:\/\/*\/*.mdown*", "file:\/\/*\/*.txt*", "file:\/\/*\/*.mkd*", "file:\/\/*\/*.rst*", "*:\/\/*\/*.*md*", "*:\/\/*\/*.*MD*", "*:\/\/*\/*.text", "*:\/\/*\/*.markdown*", "*:\/\/*\/*.mdown*", "*:\/\/*\/*.txt*", "*:\/\/*\/*.mkd*", "*:\/\/*\/*.rst*" ], "css": [ "css\/MarkdownTOC.css", "css\/highlight.css" ], "js": [ "js\/katex.min.js", "js\/config.js", "js\/jquery.js", "js\/marked.min.js", "js\/marked-highlight\/index.cjs", "js\/purify.js", "js\/highlight.min.js", "js\/markdownify.js", "js\/underscore-min.js", "js\/diagramflowseq.js", "js\/mermaid.min.js", "js\/platumlencode.js", "js\/rawdeflate.js" ], "run_at": "document_end" } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "storage", "clipboardWrite" ], "host_permissions": [ "file:\/\/\/*" ], "optional_host_permissions": [ "*:\/\/*\/" ], "web_accessible_resources": [ { "matches": [ " |