Markdown Preview Plus
Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload
Markdown Preview Plus là gì?
Markdown Preview Plus là một tiện ích mở rộng Chrome được phát triển bởi https://www.ooso.net, và tính năng chính của nó là "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Markdown Preview Plus
Tải xuống các tệp mở rộng Markdown Preview Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Markdown Preview Plus |
ID | febilkbfcbhebfnokafefeacimjdckgl |
URL Chính Thức | https://chromewebstore.google.com/detail/markdown-preview-plus/febilkbfcbhebfnokafefeacimjdckgl |
Mô tả | Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload |
Kích Thước Tệp | 2.57 MB |
Số Lần Cài Đặt | 104,180 |
Phiên Bản Hiện Tại | 0.8.5 |
Cập Nhật Lần Cuối | 2024-03-04 |
Ngày Phát Hành | 2020-05-18 |
Đánh Giá | 4.10/5 Tổng số 228 Đánh Giá |
Nhà Phát Triển | https://www.ooso.net |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/volca/markdown-preview |
URL Trang Trợ Giúp | https://github.com/volca/markdown-preview/issues |
Ngôn Ngữ Được Hỗ Trợ | 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": [ " |