Sequence Diagram Viewer
Show mermaid style sequence diagram
Sequence Diagram Viewer là gì?
Sequence Diagram Viewer là một tiện ích mở rộng Chrome được phát triển bởi Naoto Takahashi, và tính năng chính của nó là "Show mermaid style sequence diagram".
Ả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 Sequence Diagram Viewer
Tải xuống các tệp mở rộng Sequence Diagram Viewer 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
開発タブに「Sequence」が追加され 、アプリケーション内にsequence-diagram-code-generatorを組み込むことで、複雑に絡み合う非同期処理などをシーケンス図で可視化できます。 https://github.com/sandabu/sequence-diagram-code-generator また、mermaid記法のシーケンスコードからシーケンス図を表示することもできます。
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sequence Diagram Viewer |
ID | eodmfohlihemfofioemojhchjoapfabh |
URL Chính Thức | https://chromewebstore.google.com/detail/sequence-diagram-viewer/eodmfohlihemfofioemojhchjoapfabh |
Mô tả | Show mermaid style sequence diagram |
Kích Thước Tệp | 15.95 KB |
Số Lần Cài Đặt | 65 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-08-31 |
Ngày Phát Hành | 2020-08-31 |
Nhà Phát Triển | Naoto Takahashi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sandabu/sequence-diagram-code-generator |
Ngôn Ngữ Được Hỗ Trợ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sequence Diagram Viewer", "version": "1.0", "manifest_version": 2, "description": "Show mermaid style sequence diagram", "devtools_page": "devtools.html", "content_scripts": [ { "matches": [ "*:\/\/localhost\/*", "*:\/\/127.0.0.1\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab" ], "icons": { "128": "icons\/128.png", "48": "icons\/48.png", "16": "icons\/16.png" }, "content_security_policy": "script-src 'self' https:\/\/unpkg.com https:\/\/cdn.jsdelivr.net; object-src 'self'" } |