Sequence Diagram Viewer

Show mermaid style sequence diagram

Co to jest Sequence Diagram Viewer?

Sequence Diagram Viewer to rozszerzenie Chrome opracowane przez Naoto Takahashi, a jego główną funkcją jest „Show mermaid style sequence diagram”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sequence Diagram Viewer

Pobierz pliki rozszerzeń Sequence Diagram Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

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

Podstawowe informacje o rozszerzeniu

Nazwa Sequence Diagram Viewer Sequence Diagram Viewer
ID eodmfohlihemfofioemojhchjoapfabh
Oficjalny URL https://chromewebstore.google.com/detail/sequence-diagram-viewer/eodmfohlihemfofioemojhchjoapfabh
Opis Show mermaid style sequence diagram
Rozmiar pliku 15.95 KB
Liczba instalacji 65
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-08-31
Data Publikacji 2020-08-31
Deweloper Naoto Takahashi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sandabu/sequence-diagram-code-generator
Obsługiwane Języki 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'"
}