Sequence Diagram Viewer
Show mermaid style sequence diagram
ما هو Sequence Diagram Viewer؟
Sequence Diagram Viewer هو إضافة Chrome تم تطويرها بواسطة Naoto Takahashi، والميزة الرئيسية لها هي "Show mermaid style sequence diagram".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sequence Diagram Viewer
قم بتنزيل ملفات الامتداد Sequence Diagram Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
開発タブに「Sequence」が追加され 、アプリケーション内にsequence-diagram-code-generatorを組み込むことで、複雑に絡み合う非同期処理などをシーケンス図で可視化できます。 https://github.com/sandabu/sequence-diagram-code-generator また、mermaid記法のシーケンスコードからシーケンス図を表示することもできます。
معلومات أساسية عن التمديد
الاسم | 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'" } |