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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KIE และคุณลักษณะหลักของมันคือ "Visualize and edit BPMN, DMN and Test Scenario files using a graphical editor on GitHub"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BPMN, DMN & Test Scenario Editors for GitHub

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/*"
        ]
    }
}