Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Was ist Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer ist eine Chrome-Erweiterung, die von https://collusionapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Replace images with their alt attribute text for Debugging or SEO".
Erweiterungsscreenshots
Collusion Image Alt Text Viewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Collusion Image Alt Text Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
Offizielle URL | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Beschreibung | Replace images with their alt attribute text for Debugging or SEO |
Dateigröße | 69.27 KB |
Installationsanzahl | 852 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2016-10-31 |
Veröffentlichungsdatum | 2016-10-31 |
Bewertung | 3.40/5 Insgesamt 5 Bewertungen |
Entwickler | https://collusionapp.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://collusionapp.com |
URL der Datenschutzrichtlinien-Seite | https://collusionapp.com/legal |
Unterstützte Sprachen | 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 } } |