Power Automate Tools

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

什麼是Power Automate Tools?

Power Automate Tools是由Kamil Rithaler開發的Chrome擴展程式,該擴展的主要功能是“This extension enables editing a Power Automate flow definition as JSON.”。

擴展截圖

screenshot

下載Power Automate Tools擴展crx文件

下載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
官方網址 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"
    }
}