Sequence Diagram Viewer

Show mermaid style sequence diagram

Sequence Diagram Viewerคืออะไร?

Sequence Diagram Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Naoto Takahashi และคุณลักษณะหลักของมันคือ "Show mermaid style sequence diagram"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sequence Diagram Viewer

ดาวน์โหลดไฟล์ส่วนขยาย Sequence Diagram Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        開発タブに「Sequence」が追加され
、アプリケーション内にsequence-diagram-code-generatorを組み込むことで、複雑に絡み合う非同期処理などをシーケンス図で可視化できます。
https://github.com/sandabu/sequence-diagram-code-generator

また、mermaid記法のシーケンスコードからシーケンス図を表示することもできます。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sequence Diagram Viewer Sequence Diagram Viewer
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'"
}