Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Что такое Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer - это расширение Chrome, разработанное https://collusionapp.com, и его основная функция - "Replace images with their alt attribute text for Debugging or SEO".
Снимки экрана расширения
Скачать файл CRX расширения Collusion Image Alt Text Viewer
Скачайте файлы расширений Collusion Image Alt Text Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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)
Основная информация о расширении
Название | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
Официальный URL | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Описание | Replace images with their alt attribute text for Debugging or SEO |
Размер файла | 69.27 KB |
Количество установок | 852 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2016-10-31 |
Дата публикации | 2016-10-31 |
Рейтинг | 3.40/5 Всего 5 оценок |
Разработчик | https://collusionapp.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://collusionapp.com |
URL страницы политики конфиденциальности | https://collusionapp.com/legal |
Поддерживаемые языки | 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 } } |