Mermaid diagram renderer for GitHub

Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).

Mermaid diagram renderer for GitHubとは何ですか?

Mermaid diagram renderer for GitHubはtanakafwd.publishによって開発されたChromeの拡張機能で、その主な機能は「Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).」です。

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

screenshot

Mermaid diagram renderer for GitHub拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        NOTE: As announced at 2022-02-14, now GitHub officially supports Mermaid code blocks in Markdown files. You no longer need to install this Chrome extension in most cases.
https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/

An extension for Google Chrome and Chromium to render mermaid diagrams in markdown files in GitHub (https://github.com/*) and GitHub Gist (https://gist.github.com/*).

Features:

* The extension renders mermaid code blocks without sending the mermaid code to non-GitHub services, which is suitable for private repositories.
* The embedded mermaid version: ([email protected])                    

拡張機能の基本情報

名前 Mermaid diagram renderer for GitHub Mermaid diagram renderer for GitHub
ID ahhjfofclhjllmiglebianajpmkabcbc
公式URL https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc
説明 Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
ファイルサイズ 302 KB
インストール数 122
現在のバージョン 1.0.5
最終更新日 2022-02-19
公開日 2021-12-10
評価 5.00/5 合計 2 レビュー
開発者 tanakafwd.publish
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tanakafwd/mermaid-diagram-renderer
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mermaid diagram renderer for GitHub",
    "version": "1.0.5",
    "description": "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "third-party\/mermaid.min.js",
                "content-script.js"
            ]
        }
    ]
}