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
Eメール [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"
            ]
        }
    ]
}