mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
Co to jest mermaid-diagrams?
mermaid-diagrams to rozszerzenie Chrome opracowane przez roy, a jego główną funkcją jest „Enable `Mermaid diagrams` on github wiki and markdown files”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia mermaid-diagrams
Pobierz pliki rozszerzeń mermaid-diagrams w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | mermaid-diagrams |
ID | phfcghedmopjadpojhmmaffjmfiakfil |
Oficjalny URL | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
Opis | Enable `Mermaid diagrams` on github wiki and markdown files |
Rozmiar pliku | 436 KB |
Liczba instalacji | 2,735 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2020-06-22 |
Data Publikacji | 2020-06-21 |
Ocena | 3.33/5 Łącznie 6 Oceny |
Deweloper | roy |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Redisrupt/mermaid-diagrams |
Obsługiwane Języki | 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" ] } ] } |