Alt Audit
Run Alt Audit on a webpage to scan the page for images and get an overview of how the page is handling alt text.
¿Qué es Alt Audit?
Alt Audit es una extensión de Chrome desarrollada por https://mattsoria.com, y su función principal es "Run Alt Audit on a webpage to scan the page for images and get an overview of how the page is handling alt text.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Alt Audit
Descarga archivos de extensión Alt Audit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Alt Audit aims to make it easier to audit a page for all images and their alt tags. This initial MVP release just tells you how many images were found on a page, how many non-empty alt tags were found on the page, and what all of the alt text is. It will flag alt text that appears to be just the filename. The idea is to give you a quick way to summarize how alt tags are being used and how they can be improved. Still in development and very open to feedback and ideas for features.
Información Básica de la Extensión
Nombre | Alt Audit |
ID | knpagjbjmcocipojngdfnalpojcjhbof |
URL Oficial | https://chromewebstore.google.com/detail/alt-audit/knpagjbjmcocipojngdfnalpojcjhbof |
Descripción | Run Alt Audit on a webpage to scan the page for images and get an overview of how the page is handling alt text. |
Tamaño del Archivo | 207 KB |
Cantidad de Instalaciones | 37 |
Versión Actual | 1.4 |
Última Actualización | 2021-04-12 |
Fecha de Publicación | 2021-04-04 |
Desarrollador | https://mattsoria.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/itsmattsoria/alt-audit |
URL de la Página de Ayuda | https://github.com/itsmattsoria/alt-audit/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Alt Audit", "description": "Run Alt Audit on a webpage to scan the page for images and get an overview of how the page is handling alt text.", "version": "1.4", "manifest_version": 3, "permissions": [ "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/alt-audit16.png", "32": "\/images\/alt-audit32.png", "48": "\/images\/alt-audit48.png", "128": "\/images\/alt-audit128.png" } }, "icons": { "16": "\/images\/alt-audit16.png", "32": "\/images\/alt-audit32.png", "48": "\/images\/alt-audit48.png", "128": "\/images\/alt-audit128.png" } } |