mermaid-diagrams

Enable `Mermaid diagrams` on github wiki and markdown files

Co je mermaid-diagrams?

mermaid-diagrams je rozšíření Chrome vyvinuté roy, a jeho hlavní funkcí je „Enable `Mermaid diagrams` on github wiki and markdown files“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření mermaid-diagrams

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

                        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.                    

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

Název mermaid-diagrams mermaid-diagrams
ID phfcghedmopjadpojhmmaffjmfiakfil
Oficiální URL https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil
Popis Enable `Mermaid diagrams` on github wiki and markdown files
Velikost souboru 436 KB
Počet instalací 2,735
Aktuální Verze 2.0.0
Poslední Aktualizace 2020-06-22
Datum Vydání 2020-06-21
Hodnocení 3.33/5 Celkem 6 Hodnocení
Vývojář roy
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Redisrupt/mermaid-diagrams
Podporované Jazyky 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"
            ]
        }
    ]
}