Boomi Tools

A Simple Set of Tools to Improve Boomi

Boomi Toolsคืออะไร?

Boomi Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tony Banik และคุณลักษณะหลักของมันคือ "A Simple Set of Tools to Improve Boomi"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Boomi Tools

ดาวน์โหลดไฟล์ส่วนขยาย Boomi Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Addon Tools and UI Tweaks to make Boomi more user friendly.

v1.0.0 - v1.0.7 Features:
- Note Groups
- Quick Add Shape (double click in process panel)
- Quick Stop shape add (hover over a disconnected endpoint, auto accepts stop attributes)
- Disconnected endpoint alert
- Select all shapes in note group
- Process test flow animations

v1.0.8 - v1.1.0 Features:
- Shape Path Tracer (hover over a shape for a second to highlight it's connections)
- Fullscreen Build Mode Single Click fix (by default requires you to click twice)
- Fullscreen Keyboard Shortcut (press default tilde key while in build mode to enter fullscreen)
- Collapse All Side Panels Shortcut (press default tilde key twice to hide all side panels)

v1.1.0 - v1.1.4 Features:
- Track and Identify Components with the same name (bottom left hand corner)
- Config most features by clicking the BoomiTools icon in your extensions bar

v1.1.5 - v1.1.6 Features:
- Capture Entire Process as Image (link next to "arrange" in process menu)
- Toggle Table Line Wrapping when hovering over a table header

v1.1.7 - v1.2.0 Features:
- Markdown Syntax within Component Headers (toggle in settings or in component header)
- Markdown Syntax within Notes and Note Groups
- JSON auto-escaping editor for Message and Notify Shapes (experimental)
- Transparent background option for Capture Process
- Added Capture Process scaling option (1x, 1.5x, 2x, etc)
- Changed endpoint connection icons to be vector shapes for scaling (beta ui only)





Credit to https://thenounproject.com/nociconist/ for the icon                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Boomi Tools Boomi Tools
ID dmdcjdejggikfpfkgknpmcdbcdgalnoj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/boomi-tools/dmdcjdejggikfpfkgknpmcdbcdgalnoj
คำอธิบาย A Simple Set of Tools to Improve Boomi
ขนาดไฟล์ 160 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2019-03-28
วันที่เผยแพร่ 2019-03-28
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Tony Banik
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Boomi Tools",
    "description": "A Simple Set of Tools to Improve Boomi",
    "version": "1.2.0",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "bt_options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/platform.boomi.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "bt_contentScript.js"
            ],
            "css": [
                "bt_style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "bt_inPage.js",
        "libs\/rasterizeHTML.min.js",
        "libs\/showdown.min.js",
        "libs\/codeflask.min.js"
    ],
    "browser_action": {
        "default_title": "Boomi Tools",
        "default_icon": {
            "19": "img\/BoomiTools_19.png",
            "38": "img\/BoomiTools_38.png"
        },
        "default_popup": "bt_options.html"
    },
    "icons": {
        "16": "img\/BoomiTools_16.png",
        "48": "img\/BoomiTools_48.png",
        "128": "img\/BoomiTools_128.png"
    },
    "manifest_version": 2
}