mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
什麼是mermaid-diagrams?
mermaid-diagrams是由roy開發的Chrome擴展程式,該擴展的主要功能是“Enable `Mermaid diagrams` on github wiki and markdown files”。
擴展截圖
下載mermaid-diagrams擴展crx文件
下載mermaid-diagrams擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | mermaid-diagrams |
ID | phfcghedmopjadpojhmmaffjmfiakfil |
官方網址 | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
簡介 | Enable `Mermaid diagrams` on github wiki and markdown files |
檔案大小 | 436 KB |
安裝次數 | 2,735 |
目前版本 | 2.0.0 |
更新時間 | 2020-06-22 |
上架時間 | 2020-06-21 |
評分 | 3.33/5 共 6 次評分 |
開發者 | roy |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Redisrupt/mermaid-diagrams |
支援的語言 | 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" ] } ] } |