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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου 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 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\/*"
            ]
        }
    ]
}