mermaid-diagrams

Enable `Mermaid diagrams` on github wiki and markdown files

O que é mermaid-diagrams?

mermaid-diagrams é uma extensão do Chrome desenvolvida por roy, e sua principal característica é "Enable `Mermaid diagrams` on github wiki and markdown files".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão mermaid-diagrams

Baixe arquivos de extensão mermaid-diagrams no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome mermaid-diagrams mermaid-diagrams
ID phfcghedmopjadpojhmmaffjmfiakfil
URL Oficial https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil
Descrição Enable `Mermaid diagrams` on github wiki and markdown files
Tamanho do Arquivo 436 KB
Contagem de Instalações 2,735
Versão Atual 2.0.0
Última Atualização 2020-06-22
Data de Publicação 2020-06-21
Classificação 3.33/5 Total de 6 Avaliações
Desenvolvedor roy
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Redisrupt/mermaid-diagrams
Idiomas Suportados 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"
            ]
        }
    ]
}