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 |
| 公式URL | 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 |
| Eメール | [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'"
} | |