OpenWAX

OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.

OpenWAX란 무엇입니까?

OpenWAX은(는) mctenshi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem."입니다.

확장 프로그램 스크린샷

screenshot

OpenWAX 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.

OpenWAX can diagnose following accessibility problems.
* Text Alternatives of , , CSS Background
* Use of color
* Contrast
* Data Table
* Shortcut
* Language of page
* Keyboard focus
* Page title
* Frame title
* Heading elements
* Skip navigation
* Link text
* Label
* Markup validation error for a11y                    

확장 프로그램 기본 정보

이름 OpenWAX OpenWAX
ID bfahpbmaknaeohgdklfbobogpdngngoe
공식 URL https://chromewebstore.google.com/detail/openwax/bfahpbmaknaeohgdklfbobogpdngngoe
설명 OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.
파일 크기 66.23 KB
설치 횟수 24,599
현재 버전 2.0.10
최근 업데이트 2022-04-19
출시 날짜 2014-06-05
평점 4.27/5 총 26 개의 평점
개발자 mctenshi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://goonoo.github.io/OpenWAX/
도움말 페이지 URL https://goonoo.github.io/OpenWAX/
지원되는 언어 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OpenWAX",
    "version": "2.0.10",
    "description": "OpenWAX(Open Web Accessibility eXtension) is a tool that can help diagnose and fix the accessibility problem.",
    "action": {
        "default_icon": "logo_19.png",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "icons": {
        "128": "logo_128.png",
        "16": "logo_16.png",
        "19": "logo_19.png",
        "48": "logo_48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "achecker.css"
            ],
            "js": [
                "lib\/Section.js",
                "lib\/Sections.js",
                "i18n.js",
                "achecker.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}