Sequence Diagram Viewer

Show mermaid style sequence diagram

Sequence Diagram Viewer란 무엇입니까?

Sequence Diagram Viewer은(는) Naoto Takahashi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show mermaid style sequence diagram"입니다.

확장 프로그램 스크린샷

screenshot

Sequence Diagram Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        開発タブに「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'"
}