mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
Cos'è mermaid-diagrams?
mermaid-diagrams è un'estensione di Chrome sviluppata da roy, e la sua funzione principale è "Enable `Mermaid diagrams` on github wiki and markdown files".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione mermaid-diagrams
Scarica i file di estensione mermaid-diagrams in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | mermaid-diagrams |
ID | phfcghedmopjadpojhmmaffjmfiakfil |
URL Ufficiale | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
Descrizione | Enable `Mermaid diagrams` on github wiki and markdown files |
Dimensione del File | 436 KB |
Conteggio Installazioni | 2,735 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2020-06-22 |
Data di Pubblicazione | 2020-06-21 |
Valutazione | 3.33/5 Totale 6 Valutazioni |
Sviluppatore | roy |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Redisrupt/mermaid-diagrams |
Lingue Supportate | 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" ] } ] } |