IBM Equal Access Accessibility Checker

A web browser extension for checking accessibility issues

Vad är IBM Equal Access Accessibility Checker?

IBM Equal Access Accessibility Checker är en Chrome-tillägg utvecklad av IBM Accessibility, och dess huvudfunktion är "A web browser extension for checking accessibility issues".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner IBM Equal Access Accessibility Checker-förlängningens CRX-fil

Ladda ner IBM Equal Access Accessibility Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The IBM Equal Access Accessibility Checker is an open source tool for web developers and auditors that utilizes IBM's accessibility rule engine, which detects accessibility issues for web pages and web applications. The extension integrates into the browser development tools, providing an integrated checking experience, helping users quickly identify the source of accessibility issues and try fixes.                    

Grundläggande Information om Tillägg

Namn IBM Equal Access Accessibility Checker IBM Equal Access Accessibility Checker
ID lkcagbfjnkomcinoddgooolagloogehp
Officiell webbadress https://chromewebstore.google.com/detail/ibm-equal-access-accessib/lkcagbfjnkomcinoddgooolagloogehp
Beskrivning A web browser extension for checking accessibility issues
Filstorlek 26.96 MB
Antal Installationer 10,000
Aktuell Version 3.1.67.9999
Senast Uppdaterad 2024-02-04
Publiceringsdatum 2020-06-19
Betyg 4.86/5 Totalt 14 Betyg
Utvecklare IBM Accessibility
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://ibm.com/able
Hjälpsida URL https://github.com/IBMa/equal-access/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "IBM Equal Access Accessibility Checker",
    "description": "A web browser extension for checking accessibility issues",
    "author": "IBM",
    "version": "3.1.67.9999",
    "homepage_url": "https:\/\/ibm.com\/able",
    "icons": {
        "16": "assets\/[email protected]",
        "32": "assets\/[email protected]",
        "64": "assets\/[email protected]",
        "128": "assets\/[email protected]"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ],
    "action": {
        "default_title": "IBM Equal Access Accessibility Checker",
        "default_icon": {
            "16": "assets\/[email protected]",
            "32": "assets\/[email protected]",
            "48": "assets\/[email protected]",
            "64": "assets\/[email protected]",
            "128": "assets\/[email protected]"
        },
        "default_popup": "popup.html"
    },
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "viewKCM.js",
                "viewInspect.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "incognito": "split"
}