Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Cos'è Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer è un'estensione di Chrome sviluppata da https://collusionapp.com, e la sua funzione principale è "Replace images with their alt attribute text for Debugging or SEO".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Collusion Image Alt Text Viewer
Scarica i file di estensione Collusion Image Alt Text Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
URL Ufficiale | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Descrizione | Replace images with their alt attribute text for Debugging or SEO |
Dimensione del File | 69.27 KB |
Conteggio Installazioni | 852 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2016-10-31 |
Data di Pubblicazione | 2016-10-31 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | https://collusionapp.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://collusionapp.com |
URL della Pagina della Politica sulla Privacy | https://collusionapp.com/legal |
Lingue Supportate | 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 } } |