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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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\/*" ] } } |