ChromeLens
Visual impairment simulation and auditing tools to develop for accessibility.
O que é ChromeLens?
ChromeLens é uma extensão do Chrome desenvolvida por ngzhian, e sua principal característica é "Visual impairment simulation and auditing tools to develop for accessibility.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChromeLens
Baixe arquivos de extensão ChromeLens no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | ChromeLens |
ID | idikgljglpfilbhaboonnpnnincjhjkd |
URL Oficial | https://chromewebstore.google.com/detail/chromelens/idikgljglpfilbhaboonnpnnincjhjkd |
Descrição | Visual impairment simulation and auditing tools to develop for accessibility. |
Tamanho do Arquivo | 105 KB |
Contagem de Instalações | 72,740 |
Versão Atual | 0.0.10 |
Última Atualização | 2020-05-22 |
Data de Publicação | 2020-05-22 |
Classificação | 3.70/5 Total de 30 Avaliações |
Desenvolvedor | ngzhian |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |