Missing ALT attribute images detector

Google Chrome extension to highlight images missing ALT attribute.

Что такое Missing ALT attribute images detector?

Missing ALT attribute images detector - это расширение Chrome, разработанное juandavidhermoso, и его основная функция - "Google Chrome extension to highlight images missing ALT attribute.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Missing ALT attribute images detector

Скачайте файлы расширений Missing ALT attribute images detector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to easily detect images without ALT attribute in your web app.                    

Основная информация о расширении

Название Missing ALT attribute images detector Missing ALT attribute images detector
ID apflonjgaacaipfnichljodofigiobhb
Официальный URL https://chromewebstore.google.com/detail/missing-alt-attribute-ima/apflonjgaacaipfnichljodofigiobhb
Описание Google Chrome extension to highlight images missing ALT attribute.
Размер файла 35.86 KB
Количество установок 108
Текущая Версия 0.0.1
Последнее Обновление 2021-06-19
Дата публикации 2021-06-18
Разработчик juandavidhermoso
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Missing ALT attribute images detector",
    "version": "0.0.1",
    "description": "Google Chrome extension to highlight images missing ALT attribute.",
    "content_scripts": [
        {
            "css": [
                ".\/content\/css\/styles.css"
            ],
            "js": [
                ".\/content\/js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}