mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
mermaid-diagrams là gì?
mermaid-diagrams là một tiện ích mở rộng Chrome được phát triển bởi roy, và tính năng chính của nó là "Enable `Mermaid diagrams` on github wiki and markdown files".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng mermaid-diagrams
Tải xuống các tệp mở rộng mermaid-diagrams dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | mermaid-diagrams |
ID | phfcghedmopjadpojhmmaffjmfiakfil |
URL Chính Thức | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
Mô tả | Enable `Mermaid diagrams` on github wiki and markdown files |
Kích Thước Tệp | 436 KB |
Số Lần Cài Đặt | 2,735 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2020-06-22 |
Ngày Phát Hành | 2020-06-21 |
Đánh Giá | 3.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | roy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Redisrupt/mermaid-diagrams |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |