mermaid-diagrams

Enable `Mermaid diagrams` on github wiki and markdown files

什么是mermaid-diagrams?

mermaid-diagrams是由roy开发的Chrome扩展程序,该扩展的主要功能是“Enable `Mermaid diagrams` on github wiki and markdown files”。

扩展截图

screenshot

下载mermaid-diagrams扩展crx文件

下载mermaid-diagrams扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Enable `Mermaid diagrams` on github wiki and markdown files like the ones found here: http://knsv.github.io/mermaid/index.html.

For example add this to any wiki page or markdown file in github

```mermaid
sequenceDiagram
  A->> B: Query
  B->> C: Forward query
  Note right of C: Thinking...
  C->> B: Response
  B->> A: Forward response
```

This will generate a nice diagram if loaded from github. The extension will just replace the code block with the generated  diagram.                    

扩展基本信息

名称 mermaid-diagrams mermaid-diagrams
ID phfcghedmopjadpojhmmaffjmfiakfil
官方URL https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil
简介 Enable `Mermaid diagrams` on github wiki and markdown files
文件大小 436 KB
安装次数 2,735
当前版本 2.0.0
更新时间 2020-06-22
上架时间 2020-06-21
评分 3.33/5 共6次评分
开发者 roy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Redisrupt/mermaid-diagrams
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "mermaid-diagrams",
    "version": "2.0.0",
    "description": "Enable `Mermaid diagrams` on github wiki and markdown files",
    "homepage_url": "https:\/\/github.com\/Redisrupt\/mermaid-diagrams",
    "manifest_version": 2,
    "minimum_chrome_version": "56",
    "permissions": [
        "https:\/\/*.visualstudio.com\/*",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*",
        "https:\/\/bitbucket.org\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.visualstudio.com\/*",
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*",
                "https:\/\/bitbucket.org\/*"
            ],
            "css": [
                "diagrams.css",
                "on_change_animation.css"
            ],
            "js": [
                "mermaid.min.js",
                "content.js"
            ]
        }
    ]
}