Power Automate actions handler

The tool to handle Power Automate actions

Τι είναι το Power Automate actions handler;

Το Power Automate actions handler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://michalkornet.com, και η κύρια λειτουργία του είναι "The tool to handle Power Automate actions".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Power Automate actions handler

Λήψη αρχείων επέκτασης Power Automate actions handler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Power Automate Actions tool serves as a versatile solution for managing Power Automate actions. It offers the following functionalities:

1. Recording all HTTP requests from SharePoint:

- Catching requests invoked directly from the SharePoint interface
- Recording requests invoked from the browser console
- Gathering requests executed with SP Editor

2. Duplicating actions in between tenants and environments:

- Easily copy all actions from the "My Clipboard" section and paste them into the desired environment.

3. Coping actions from community blogs:
- Copy all actions stored on a page
- Copy individual actions using the provided copy button
- Check out our article on bulb presence, "https://michalkornet.com/2023/04/25/Bulb_Presence.html," for a reference.

4. Storing actions in a more persistent way

The project is open-sourced, and we encourage you to provide feedback in the issues section of the repository: "https://github.com/mkm17/powerautomate-actions-extension."

5. Extended Copy/Paste feature for the new PowerAutomate editor
In version 1.0.0.4 the new feature was added to the extension. It allows for store copied actions to the extension storage and choose which actions should be pasted to the workflow.


Change Log:
1.0.3 : Handling SharePoint requests which use _vti_bin endpoint.
1.0.5 : Added support for copying actions from the new Power Automate editor.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Power Automate actions handler Power Automate actions handler
ID eoeddkppcaagdeafjfiopeldffkhjodl
Επίσημο URL https://chromewebstore.google.com/detail/power-automate-actions-ha/eoeddkppcaagdeafjfiopeldffkhjodl
Περιγραφή The tool to handle Power Automate actions
Μέγεθος Αρχείου 629 KB
Αριθμός Εγκαταστάσεων 437
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2024-01-16
Ημερομηνία Δημοσίευσης 2023-05-24
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://michalkornet.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mkm17/powerautomate-actions-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mkm17/powerautomate-actions-extension/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Power Automate actions handler",
    "description": "The tool to handle Power Automate actions",
    "version": "1.0.5",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "background",
        "storage",
        "clipboardRead"
    ],
    "background": {
        "service_worker": ".\/static\/js\/Background.js"
    },
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/Content.js"
            ]
        }
    ]
}