Markdown Preview Plus
Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload
Co je Markdown Preview Plus?
Markdown Preview Plus je rozšíření Chrome vyvinuté https://www.ooso.net, a jeho hlavní funkcí je „Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Markdown Preview Plus
Stáhněte si soubory rozšíření Markdown Preview Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Markdown Preview Plus |
ID | febilkbfcbhebfnokafefeacimjdckgl |
Oficiální URL | https://chromewebstore.google.com/detail/markdown-preview-plus/febilkbfcbhebfnokafefeacimjdckgl |
Popis | Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload |
Velikost souboru | 2.57 MB |
Počet instalací | 104,180 |
Aktuální Verze | 0.8.5 |
Poslední Aktualizace | 2024-03-04 |
Datum Vydání | 2020-05-18 |
Hodnocení | 4.10/5 Celkem 228 Hodnocení |
Vývojář | https://www.ooso.net |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/volca/markdown-preview |
URL Stránky Nápovědy | https://github.com/volca/markdown-preview/issues |
Podporované Jazyky | 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": [ " |