PowerUI for Power Automate
Improves the flow editor user interface for Power Automate
Что такое PowerUI for Power Automate?
PowerUI for Power Automate - это расширение Chrome, разработанное https://365apps.io, и его основная функция - "Improves the flow editor user interface for Power Automate".
Снимки экрана расширения
Скачать файл CRX расширения PowerUI for Power Automate
Скачайте файлы расширений PowerUI for Power Automate в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
➗ Gives more room for expression editing ↔ Makes action steps wider using more screen real estate ↕ Makes drop down lists larger using the full height of the screen 📃 Works with both types of formula edit & dynamic value picker ⚓ Docks popups to top of screen 🎨 Uses just css styling to help you make better flows Feedback welcome - click the link in the extension popup Roadmap - Configurable action width - better layout for condition steps - dock location choice - scratchpad - more formula expression builder input improvements
Основная информация о расширении
Название | PowerUI for Power Automate |
ID | piajkgbpepkfdpogbcngdfbdnccdnidi |
Официальный URL | https://chromewebstore.google.com/detail/powerui-for-power-automat/piajkgbpepkfdpogbcngdfbdnccdnidi |
Описание | Improves the flow editor user interface for Power Automate |
Размер файла | 13.6 KB |
Количество установок | 725 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2022-09-12 |
Дата публикации | 2022-03-09 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | https://365apps.io |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://365apps.io/pages/powerui |
URL страницы помощи | https://share.hsforms.com/1rjVQ_fU8Rb2gDpOi9Uq2Sg4jo0g |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PowerUI for Power Automate", "description": "Improves the flow editor user interface for Power Automate", "version": "1.0.4", "manifest_version": 3, "author": "365Apps.io", "action": { "default_popup": "index.html", "default_title": "PowerUI" }, "icons": { "16": "expand.png", "48": "expand.png", "128": "expand.png" }, "background": { "service_worker": ".\/background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/*.flow.microsoft.com\/*", "https:\/\/make.powerapps.com\/*", "https:\/\/make.powerautomate.com\/*" ] } ] } |