ChromeLens

Visual impairment simulation and auditing tools to develop for accessibility.

ChromeLens란 무엇입니까?

ChromeLens은(는) ngzhian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visual impairment simulation and auditing tools to develop for accessibility."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ChromeLens is a Google Chrome extension that provides a suite of tools to help with web accessibility development.

- Lens (Vision Simulator)
  Interact with a website as a completely/partially blind or a colorblind person.

- Accessibility Audit
  Run a website through an series of accessibility rules and easily discover elements in your website that do not comply with them.

- Tab-tracker
  Key website features should be navigable solely via the keyboard (tab button), while not making the user jump through hoops to get to a feature. With the tab-tracker, you can visually track the flow of navigation through a website.

Open sourced at https://github.com/chromelens/chromelens
Built during greylockhackfest 2016                    

확장 프로그램 기본 정보

이름 ChromeLens ChromeLens
ID idikgljglpfilbhaboonnpnnincjhjkd
공식 URL https://chromewebstore.google.com/detail/chromelens/idikgljglpfilbhaboonnpnnincjhjkd
설명 Visual impairment simulation and auditing tools to develop for accessibility.
파일 크기 105 KB
설치 횟수 72,740
현재 버전 0.0.10
최근 업데이트 2020-05-22
출시 날짜 2020-05-22
평점 3.70/5 총 30 개의 평점
개발자 ngzhian
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeLens",
    "description": "Visual impairment simulation and auditing tools to develop for accessibility.",
    "version": "0.0.10",
    "minimum_chrome_version": "42",
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/chromelens2-48.png",
        "128": "icons\/chromelens2-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ]
}