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 |
| 电子邮箱 | [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'"
} | |