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