Mermaid Charts

Render mermaid charts on webpages

Co je Mermaid Charts?

Mermaid Charts je rozšíření Chrome vyvinuté acesmndr, a jeho hlavní funkcí je „Render mermaid charts on webpages“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mermaid Charts

Stáhněte si soubory rozšíření Mermaid Charts 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í

                        Render charts across websites written in markdown files with mermaid syntax.
Full support for
* Github
* Dillinger.io

Currently doesn't support
* Bitbucket

Features:
* Supports Flowchart, Sequence Diagram, ER Diagram, State Diagram, Class Diagram, Pie Chart and Gantt Chart
* Latest version of Mermaid.js (v8.5.1) integrated so has support for the latest mermaid js syntax
* Renders graphs from markdown files only when the extension icon is pressed
* Doesn't allocate memory and run in the background when not required
* Supports github wikis
* Fails silently and logs error to the console when rendering fails                    

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

Název Mermaid Charts Mermaid Charts
ID hfllniagfgnpdjnamaoloegkepiglblf
Oficiální URL https://chromewebstore.google.com/detail/mermaid-charts/hfllniagfgnpdjnamaoloegkepiglblf
Popis Render mermaid charts on webpages
Velikost souboru 238 KB
Počet instalací 288
Aktuální Verze 1.0.0
Poslední Aktualizace 2021-05-02
Datum Vydání 2020-05-27
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář acesmndr
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Acesmndr/mermaid-charts-chrome-extension
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mermaid Charts",
    "version": "1.0.0",
    "description": "Render mermaid charts on webpages",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Render Mermaid Charts",
        "default_icon": "assets\/icons\/icon128.png"
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "assets\/background.js"
        ],
        "persistent": false
    }
}