Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Co to jest Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer to rozszerzenie Chrome opracowane przez https://collusionapp.com, a jego główną funkcją jest „Replace images with their alt attribute text for Debugging or SEO”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Collusion Image Alt Text Viewer
Pobierz pliki rozszerzeń Collusion Image Alt Text Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
Oficjalny URL | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Opis | Replace images with their alt attribute text for Debugging or SEO |
Rozmiar pliku | 69.27 KB |
Liczba instalacji | 852 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2016-10-31 |
Data Publikacji | 2016-10-31 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | https://collusionapp.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://collusionapp.com |
Adres URL Strony Polityki Prywatności | https://collusionapp.com/legal |
Obsługiwane Języki | 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 } } |