Markdown Diagrams

Render PlantUML, Mermaid and others graph/diagrams on webpages.

Markdown Diagramsとは何ですか?

Markdown Diagramsはmodulo.srlによって開発されたChromeの拡張機能で、その主な機能は「Render PlantUML, Mermaid and others graph/diagrams on webpages.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Markdown Diagrams拡張機能のCRXファイルをダウンロード

Markdown Diagrams拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A browser extension for Chrome, Edge, Opera and Firefox that renders markdown diagrams and charts code blocks into preview images.

Supports many languages: PlantUML, Mermaid, GraphViz and many more (full list on website).

Supports any website:
- GitHub, GitLab, Bitbucket: md files, pull requests, issues, gists, wiki...
- Atlassian: Jira, Confluence, Trello...
- all other websites trying known patterns.
- local files when rendered with some markdown extension.

How to use: simply put diagram or chart code into a blockquote

```language
code here
```

Double click to rendered diagram to swith to code/diagram.
Click to extension icon to disable/enable parsing in current browser tab.

Examples
https://gitlab.com/markzackie/markdown-diagrams-browser-extension/-/tree/master/doc/examples
https://bitbucket.org/marcozaccari2/markdown-diagrams-browser-extension/src/master/doc/examples
https://github.com/marcozaccari/markdown-diagrams-browser-extension                    

拡張機能の基本情報

名前 Markdown Diagrams Markdown Diagrams
ID pmoglnmodacnbbofbgcagndelmgaclel
公式URL https://chromewebstore.google.com/detail/markdown-diagrams/pmoglnmodacnbbofbgcagndelmgaclel
説明 Render PlantUML, Mermaid and others graph/diagrams on webpages.
ファイルサイズ 155 KB
インストール数 5,000
現在のバージョン 1.21
最終更新日 2022-01-26
公開日 2020-08-16
評価 4.90/5 合計 10 レビュー
開発者 modulo.srl
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/marcozaccari/markdown-diagrams-browser-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Diagrams",
    "description": "Render PlantUML, Mermaid and others graph\/diagrams on webpages.",
    "version": "1.21",
    "manifest_version": 2,
    "permissions": [
        "storage",
        ""
    ],
    "options_ui": {
        "page": "settings\/index.html"
    },
    "background": {
        "scripts": [
            "js\/pako_deflate.js",
            "js\/settings.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_title": "Markdown Diagrams"
    },
    "content_scripts": [
        {
            "js": [
                "js\/settings.js",
                "js\/sites.js",
                "js\/diagrams.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*.md",
                "file:\/\/*\/*.MD",
                "file:\/\/*\/*.markdown",
                "file:\/\/*\/*.mdown",
                "file:\/\/*\/*.mkd",
                "file:\/\/*\/*.rmd",
                "file:\/\/*\/*.rst",
                "file:\/\/*\/*.txt"
            ],
            "run_at": "document_idle"
        }
    ]
}