a11y.css
a11y.css provides warnings about possible risks and mistakes that exist in HTML.
O que é a11y.css?
a11y.css é uma extensão do Chrome desenvolvida por gael.poupard, e sua principal característica é "a11y.css provides warnings about possible risks and mistakes that exist in HTML.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão a11y.css
Baixe arquivos de extensão a11y.css 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
First a11y.css was a bookmarklet inserting a stylesheet into the page. This CSS file intends to warn developers about possible risks and mistakes that exist in HTML code. It can also be used to roughly evaluate a site's quality by simply including it as an external stylesheet. This extension does the same, plus adds some tools: — Outline focus (keyboard navigation) — Show languages used (relies on lang attributes) —Check alt and title attributes on images You can submit your bugs on github. Original bookmarklet code: Gaël Poupard Extension code: Stéphane Deschamps Thanks to Anthony Ricaud and Mathieu Pillard for their help!
Informações Básicas da Extensão
Nome | a11y.css |
ID | iolfinldndiiobhednboghogkiopppid |
URL Oficial | https://chromewebstore.google.com/detail/a11ycss/iolfinldndiiobhednboghogkiopppid |
Descrição | a11y.css provides warnings about possible risks and mistakes that exist in HTML. |
Tamanho do Arquivo | 596 KB |
Contagem de Instalações | 2,303 |
Versão Atual | 2.0.1 |
Última Atualização | 2023-08-23 |
Data de Publicação | 2019-05-10 |
Classificação | 3.75/5 Total de 4 Avaliações |
Desenvolvedor | gael.poupard |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://ffoodd.github.io/a11y.css |
URL da Página de Ajuda | https://github.com/ffoodd/a11y.css-webextension |
Idiomas Suportados | en,fr,es,pl,el,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "a11y.css", "description": "a11y.css provides warnings about possible risks and mistakes that exist in HTML.", "version": "2.0.1", "default_locale": "en", "minimum_chrome_version": "93", "permissions": [ "activeTab", "tabs", "storage", "scripting" ], "action": { "default_title": "a11y.css", "default_popup": "popup\/index.html", "default_icon": { "19": "icons\/a11y-css_19.png", "38": "icons\/a11y-css_38.png" } }, "background": { "service_worker": "\/scripts\/background\/main.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/scripts\/injected\/alt.js" ], "css": [ "\/scripts\/injected\/alt.css" ], "run_at": "document_end" } ], "icons": { "16": "icons\/a11y-css_16.png", "48": "icons\/a11y-css_48.png", "128": "icons\/a11y-css_128.png" }, "web_accessible_resources": [ { "resources": [ "icons\/info.svg", "icons\/ko.svg", "icons\/ok.svg", "scripts\/injected\/*", "css\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |