Power Automate Tools

This extension enables editing a Power Automate flow definition as JSON.

Power Automate Toolsคืออะไร?

Power Automate Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kamil Rithaler และคุณลักษณะหลักของมันคือ "This extension enables editing a Power Automate flow definition as JSON."

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

screenshot

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

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

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

                        The Chrome extension that enables editing a Power Automate flow definition as JSON.

Motivation
The reason behind creating this extension is constantly struggling with repetitive tasks in the flow authoring workflow like replacing a SharePoint site's URL or changing the variable name.

Features
- Edit a Power Automate flow as JSON in your browser.
- Workflow definition JSON schema validation.
- Rich text manipulation features thanks to Monaco Editor (VS Code).
- Validating actions using "Flow Checker".
- More features may come in future :)

How to use it

1. Get the extension.
2. Open the flow edit page in the Power Automate/Power Apps portal.
3. Click the extension icon.
4. Edit your flow!

Change Log

v1.1
Added support for opening a flow from the new Power Automate portal and Power Apps portal.

Known limitations
- The authentication token is not refreshed automatically at this moment. Sometimes might be necessary to refresh the flow's page that was used to open the extension.                    

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

ชื่อ Power Automate Tools Power Automate Tools
ID jccblbmcghkddifenlocnjfmeemjeacc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/power-automate-tools/jccblbmcghkddifenlocnjfmeemjeacc
คำอธิบาย This extension enables editing a Power Automate flow definition as JSON.
ขนาดไฟล์ 1.1 MB
จำนวนการติดตั้ง 3,559
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2022-07-11
วันที่เผยแพร่ 2022-04-14
คะแนน 4.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Kamil Rithaler
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rithala/power-automate-tools
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Power Automate Tools",
    "description": "This extension enables editing a Power Automate flow definition as JSON.",
    "version": "1.1",
    "manifest_version": 3,
    "icons": {
        "512": "icons\/pa-tools-512.png",
        "256": "icons\/pa-tools-256.png",
        "128": "icons\/pa-tools-128.png",
        "48": "icons\/pa-tools-48.png"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.flow.microsoft.com\/",
        "*:\/\/*.make.powerautomate.com\/",
        "*:\/\/*.make.powerapps.com\/",
        "https:\/\/login.microsoftonline.com\/"
    ],
    "action": {
        "default_title": "Power Automate Tools"
    },
    "background": {
        "service_worker": "background.js"
    }
}