Mermaid diagram renderer for GitHub

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

Co je Mermaid diagram renderer for GitHub?

Mermaid diagram renderer for GitHub je rozšíření Chrome vyvinuté tanakafwd.publish, a jeho hlavní funkcí je „Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mermaid diagram renderer for GitHub

Stáhněte si soubory rozšíření Mermaid diagram renderer for GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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])                    

Základní Informace o Rozšíření

Název Mermaid diagram renderer for GitHub Mermaid diagram renderer for GitHub
ID ahhjfofclhjllmiglebianajpmkabcbc
Oficiální URL https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc
Popis Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
Velikost souboru 302 KB
Počet instalací 122
Aktuální Verze 1.0.5
Poslední Aktualizace 2022-02-19
Datum Vydání 2021-12-10
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář tanakafwd.publish
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tanakafwd/mermaid-diagram-renderer
Podporované Jazyky 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"
            ]
        }
    ]
}