mermaid-diagrams

Enable `Mermaid diagrams` on github wiki and markdown files

Wat is mermaid-diagrams?

mermaid-diagrams is een Chrome-extensie ontwikkeld door roy, en de belangrijkste functie is "Enable `Mermaid diagrams` on github wiki and markdown files".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie mermaid-diagrams

Download mermaid-diagrams-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam mermaid-diagrams mermaid-diagrams
ID phfcghedmopjadpojhmmaffjmfiakfil
Officiële URL https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil
Beschrijving Enable `Mermaid diagrams` on github wiki and markdown files
Bestandsgrootte 436 KB
Aantal Installaties 2,735
Huidige Versie 2.0.0
Laatst Bijgewerkt 2020-06-22
Publicatiedatum 2020-06-21
Beoordeling 3.33/5 Totaal 6 Beoordelingen
Ontwikkelaar roy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Redisrupt/mermaid-diagrams
Ondersteunde Talen 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"
            ]
        }
    ]
}