BPMN, DMN & Test Scenario Editors for GitHub
Visualize and edit BPMN, DMN and Test Scenario files using a graphical editor on GitHub
什麼是BPMN, DMN & Test Scenario Editors for GitHub?
BPMN, DMN & Test Scenario Editors for GitHub是由KIE開發的Chrome擴展程式,該擴展的主要功能是“Visualize and edit BPMN, DMN and Test Scenario files using a graphical editor on GitHub”。
擴展截圖
下載BPMN, DMN & Test Scenario Editors for GitHub擴展crx文件
下載BPMN, DMN & Test Scenario Editors for GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Have you ever wanted to visualize your XML files of BPMN and DMN diagrams on GitHub? This Chrome Extension augments GitHub and provides a brand new way to handle your BPMN, DMN, and Scenario Simulation files directly on the GitHub interface. With the extension installed, every time you visualize or edit a DMN or a BPMN file, you will visualize your assets on our graphical editors instead of seeing an XML file. The same applies to visualize your assets on Pull Request reviews!
擴展基本資訊
名稱 | BPMN, DMN & Test Scenario Editors for GitHub |
ID | mgkfehibfkdpjkfjbikpchpcfimepckf |
官方網址 | https://chromewebstore.google.com/detail/bpmn-dmn-test-scenario-ed/mgkfehibfkdpjkfjbikpchpcfimepckf |
簡介 | Visualize and edit BPMN, DMN and Test Scenario files using a graphical editor on GitHub |
檔案大小 | 102 KB |
安裝次數 | 554 |
目前版本 | 0.32.0 |
更新時間 | 2023-10-12 |
上架時間 | 2020-06-08 |
評分 | 4.00/5 共 4 次評分 |
開發者 | KIE |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BPMN, DMN & Test Scenario Editors for GitHub", "version": "0.32.0", "manifest_version": 3, "description": "Visualize and edit BPMN, DMN and Test Scenario files using a graphical editor on GitHub", "content_scripts": [ { "run_at": "document_idle", "js": [ "content_scripts\/github.js" ], "matches": [ "https:\/\/*.github.com\/*" ], "all_frames": true } ], "icons": { "16": "resources\/icon_16.png", "48": "resources\/icon_48.png", "128": "resources\/icon_128.png" }, "action": { "default_icon": "resources\/icon_16.png" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "resources\/*", "scripts\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "declarative_net_request": { "rule_resources": [ { "id": "rulesset_1", "enabled": true, "path": "rules.json" } ] }, "permissions": [ "declarativeNetRequest" ], "host_permissions": [ "https:\/\/*.github.com\/*", "http:\/\/*.github.com\/*" ], "sandbox": { "pages": [ "https:\/\/raw.githubusercontent.com" ] }, "content_security_policy": { "sandbox": "sandbox allow-scripts; object-src 'self'" }, "externally_connectable": { "matches": [ "https:\/\/*.github.com\/*", "http:\/\/*.github.com\/*", "https:\/\/kiegroup.github.io\/*", "http:\/\/kiegroup.github.io\/*" ] } } |