markdown mermaid

markdown-mermaid-plugin

What is markdown mermaid?

markdown mermaid is a Chrome extension developed by ljwiie, and its main feature is "markdown-mermaid-plugin".

Extension Screenshots

screenshot
screenshot
screenshot

Download markdown mermaid Extension CRX File

Download markdown mermaid 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

                        Markdown Viewer 插件增强,在该插件的基础上解析markdown文档中mermaid格式的代码块,将其转换为相应的图形展示到页面上。                    

Extension Basic Information

Name markdown mermaid markdown mermaid
ID bmmfmohfjjppegklllannmmbbnopdnif
Official URL https://chromewebstore.google.com/detail/markdown-mermaid/bmmfmohfjjppegklllannmmbbnopdnif
Description markdown-mermaid-plugin
File Size 233 KB
Installation Count 40
Current Version 0.0.1
Last Updated 2021-02-22
Publish Date 2021-02-22
Developer ljwiie
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "markdown mermaid",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "markdown-mermaid-plugin",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "markdown mermaid",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*.md"
            ],
            "js": [
                "js\/mermaid.min.js",
                "js\/main.js"
            ],
            "run_at": "document_start"
        }
    ]
}