PowBility

A Power BI Accessibility Checker for Visualizations.

What is PowBility?

PowBility is a Chrome extension developed by Unknown, and its main feature is "A Power BI Accessibility Checker for Visualizations.".

Extension Screenshots

screenshot

Download PowBility Extension CRX File

Download PowBility 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 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.                    

Extension Basic Information

Name PowBility PowBility
ID bmanlgpbndmocagmlfhnklacianjjbbe
Official URL https://chromewebstore.google.com/detail/powbility/bmanlgpbndmocagmlfhnklacianjjbbe
Description A Power BI Accessibility Checker for Visualizations.
File Size 79.29 KB
Installation Count 82
Current Version 1.5
Last Updated 2021-05-22
Publish Date 2021-05-11
Rating 3.00/5 Total 2 Ratings
Developer Unknown
Payment Type free
Supported Languages 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
    }
}