PowBility

A Power BI Accessibility Checker for Visualizations.

PowBility là gì?

PowBility là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A Power BI Accessibility Checker for Visualizations.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PowBility

Tải xuống các tệp mở rộng PowBility dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension enables users to run an accessibility checker on Power BI reports. This checker focuses on identifying accessibility issues in Power BI visualizations. Users should install this to ensure that their reports are compliant with accessibility standards and to provide a better experience for report readers.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PowBility PowBility
ID bmanlgpbndmocagmlfhnklacianjjbbe
URL Chính Thức https://chromewebstore.google.com/detail/powbility/bmanlgpbndmocagmlfhnklacianjjbbe
Mô tả A Power BI Accessibility Checker for Visualizations.
Kích Thước Tệp 79.29 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2021-05-22
Ngày Phát Hành 2021-05-11
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowBility",
    "author": "Rebecca Klein, Erika Sundstrom",
    "description": "A Power BI Accessibility Checker for Visualizations.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "capstonelogocolors.png",
        "default_title": "PowBility"
    },
    "icons": {
        "16": "capstonelogocolors.png",
        "48": "capstonelogocolors.png",
        "128": "capstonelogocolors.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.powerbi.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/app.powerbi.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}