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.”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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"
]
} | |