mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
¿Qué es mermaid-diagrams?
mermaid-diagrams es una extensión de Chrome desarrollada por roy, y su función principal es "Enable `Mermaid diagrams` on github wiki and markdown files".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión mermaid-diagrams
Descarga archivos de extensión mermaid-diagrams en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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. Información Básica de la Extensión
| Nombre | |
| ID | phfcghedmopjadpojhmmaffjmfiakfil |
| URL Oficial | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
| Descripción | Enable `Mermaid diagrams` on github wiki and markdown files |
| Tamaño del Archivo | 436 KB |
| Cantidad de Instalaciones | 2,735 |
| Versión Actual | 2.0.0 |
| Última Actualización | 2020-06-22 |
| Fecha de Publicación | 2020-06-21 |
| Calificación | 3.33/5 Total de 6 Calificaciones |
| Desarrollador | roy |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/Redisrupt/mermaid-diagrams |
| Idiomas Soportados | 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"
]
}
]
} | |