Sequence Diagram Viewer

Show mermaid style sequence diagram

What is Sequence Diagram Viewer?

Sequence Diagram Viewer is a Chrome extension developed by Naoto Takahashi, and its main feature is "Show mermaid style sequence diagram".

Extension Screenshots

screenshot

Download Sequence Diagram Viewer Extension CRX File

Download Sequence Diagram Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name Sequence Diagram Viewer Sequence Diagram Viewer
ID eodmfohlihemfofioemojhchjoapfabh
Official URL https://chromewebstore.google.com/detail/sequence-diagram-viewer/eodmfohlihemfofioemojhchjoapfabh
Description Show mermaid style sequence diagram
File Size 15.95 KB
Installation Count 65
Current Version 1.0
Last Updated 2020-08-31
Publish Date 2020-08-31
Developer Naoto Takahashi
Email [email protected]
Payment Type free
Extension Website https://github.com/sandabu/sequence-diagram-code-generator
Supported Languages 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'"
}