Power Apps Studio Tools

Tools for Power Apps Studio to enhance your developer experience

What is Power Apps Studio Tools?

Power Apps Studio Tools is a Chrome extension developed by Charles Sexton, and its main feature is "Tools for Power Apps Studio to enhance your developer experience".

Extension Screenshots

screenshot

Download Power Apps Studio Tools Extension CRX File

Download Power Apps Studio Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension provides the ability to re-skin the Power Apps Studio formula bar in dark mode.

There's also now the option to show how your app looks in greyscale, to check for potential accessibility issues.                    

Extension Basic Information

Name Power Apps Studio Tools Power Apps Studio Tools
ID jlbmdajobkmdjgoijbcefiahfaaapfno
Official URL https://chromewebstore.google.com/detail/power-apps-studio-tools/jlbmdajobkmdjgoijbcefiahfaaapfno
Description Tools for Power Apps Studio to enhance your developer experience
File Size 21.66 KB
Installation Count 204
Current Version 0.0.0.6
Last Updated 2023-07-25
Publish Date 2023-07-12
Developer Charles Sexton
Email [email protected]
Payment Type free
Extension Website https://www.charlessexton.com/
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Power Apps Studio Tools",
    "version": "0.0.0.6",
    "description": "Tools for Power Apps Studio to enhance your developer experience",
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "images\/icon-48.png",
        "32": "images\/icon-48.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css",
                "fullscreen.css"
            ],
            "js": [
                "scripts\/content.js",
                "scripts\/fullscreen-powerfx.js"
            ],
            "matches": [
                "https:\/\/*.island.powerapps.com\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "bg.js"
    }
}