Sequence Diagram Viewer
Show mermaid style sequence diagram
什麼是Sequence Diagram Viewer?
Sequence Diagram Viewer是由Naoto Takahashi開發的Chrome擴展程式,該擴展的主要功能是“Show mermaid style sequence diagram”。
擴展截圖
下載Sequence Diagram Viewer擴展crx文件
下載Sequence Diagram Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
開発タブに「Sequence」が追加され
、アプリケーション内にsequence-diagram-code-generatorを組み込むことで、複雑に絡み合う非同期処理などをシーケンス図で可視化できます。
https://github.com/sandabu/sequence-diagram-code-generator
また、mermaid記法のシーケンスコードからシーケンス図を表示することもできます。 擴展基本資訊
| 名稱 | |
| ID | eodmfohlihemfofioemojhchjoapfabh |
| 官方網址 | https://chromewebstore.google.com/detail/sequence-diagram-viewer/eodmfohlihemfofioemojhchjoapfabh |
| 簡介 | Show mermaid style sequence diagram |
| 檔案大小 | 15.95 KB |
| 安裝次數 | 65 |
| 目前版本 | 1.0 |
| 更新時間 | 2020-08-31 |
| 上架時間 | 2020-08-31 |
| 開發者 | Naoto Takahashi |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/sandabu/sequence-diagram-code-generator |
| 支援的語言 | 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'"
} | |