Power Apps Studio Tools

Tools for Power Apps Studio to enhance your developer experience

Что такое Power Apps Studio Tools?

Power Apps Studio Tools - это расширение Chrome, разработанное Charles Sexton, и его основная функция - "Tools for Power Apps Studio to enhance your developer experience".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Power Apps Studio Tools

Скачайте файлы расширений Power Apps Studio Tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Power Apps Studio Tools Power Apps Studio Tools
ID jlbmdajobkmdjgoijbcefiahfaaapfno
Официальный URL https://chromewebstore.google.com/detail/power-apps-studio-tools/jlbmdajobkmdjgoijbcefiahfaaapfno
Описание Tools for Power Apps Studio to enhance your developer experience
Размер файла 21.66 KB
Количество установок 204
Текущая Версия 0.0.0.6
Последнее Обновление 2023-07-25
Дата публикации 2023-07-12
Разработчик Charles Sexton
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.charlessexton.com/
Поддерживаемые языки 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"
    }
}