mermaid-diagrams

Enable `Mermaid diagrams` on github wiki and markdown files

Qu'est-ce que mermaid-diagrams ?

mermaid-diagrams est une extension Chrome développée par roy, et sa fonction principale est "Enable `Mermaid diagrams` on github wiki and markdown files".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension mermaid-diagrams

Téléchargez les fichiers d'extension mermaid-diagrams au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom mermaid-diagrams mermaid-diagrams
ID phfcghedmopjadpojhmmaffjmfiakfil
URL Officiel https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil
Description Enable `Mermaid diagrams` on github wiki and markdown files
Taille du Fichier 436 KB
Nombre d'Installations 2,735
Version Actuelle 2.0.0
Dernière Mise à Jour 2020-06-22
Date de Publication 2020-06-21
Évaluation 3.33/5 Total 6 Évaluations
Développeur roy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Redisrupt/mermaid-diagrams
Langues Prises en Charge 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"
            ]
        }
    ]
}