Markdown Preview Plus
Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload
Markdown Preview Plus क्या है?
Markdown Preview Plus https://www.ooso.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Markdown Preview Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Markdown Preview Plus |
ID | febilkbfcbhebfnokafefeacimjdckgl |
आधिकारिक URL | https://chromewebstore.google.com/detail/markdown-preview-plus/febilkbfcbhebfnokafefeacimjdckgl |
विवरण | Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload |
फ़ाइल का आकार | 2.57 MB |
स्थापना संख्या | 104,180 |
वर्तमान संस्करण | 0.8.5 |
अंतिम अपडेट | 2024-03-04 |
प्रकाशन तिथि | 2020-05-18 |
रेटिंग | 4.10/5 कुल 228 रेटिंग्स |
डेवलपर | https://www.ooso.net |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/volca/markdown-preview |
सहायता पृष्ठ URL | https://github.com/volca/markdown-preview/issues |
समर्थित भाषाएँ | 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": [ " |