Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
¿Qué es Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer es una extensión de Chrome desarrollada por https://collusionapp.com, y su función principal es "Replace images with their alt attribute text for Debugging or SEO".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Collusion Image Alt Text Viewer
Descarga archivos de extensión Collusion Image Alt Text Viewer 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
Simulates 'Text Only' or rather, not loading images to reveal their alt text attribute to help verify they are set and what they look like for accessibility or SEO. Works for any website. Includes options for high contrast colors. Brought to you by Collusion (https://collusionapp.com)
Información Básica de la Extensión
Nombre | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
URL Oficial | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Descripción | Replace images with their alt attribute text for Debugging or SEO |
Tamaño del Archivo | 69.27 KB |
Cantidad de Instalaciones | 852 |
Versión Actual | 1.0.1 |
Última Actualización | 2016-10-31 |
Fecha de Publicación | 2016-10-31 |
Calificación | 3.40/5 Total de 5 Calificaciones |
Desarrollador | https://collusionapp.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://collusionapp.com |
URL de la Página de Política de Privacidad | https://collusionapp.com/legal |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Collusion Image Alt Text Viewer", "short_name": "AltTextView", "description": "Replace images with their alt attribute text for Debugging or SEO", "version": "1.0.1", "manifest_version": 2, "icons": { "128": "logo_icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js", "jquery-3.1.1.min.js" ], "css": [ "content-style.css" ] } ], "permissions": [ "activeTab", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "logo_icon_128_green.png", "deafult_title": "Collusion Image Alt Text Viewer", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |