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文件

下載ChromeLens擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}