Image ALT

Check all image and SVG elements are accessible.

ما هو Image ALT؟

Image ALT هو إضافة Chrome تم تطويرها بواسطة Laurence Lewis، والميزة الرئيسية لها هي "Check all image and SVG elements are accessible.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Image ALT

قم بتنزيل ملفات الامتداد Image ALT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        # A11y Image check
Simple extension for basic accessibility testing images.

## Images ()

### Background Image (CSS)

+ Identifies all the images inserted in the webpage using either inline styles or CSS. If an element contains a background image, a message about the method of image insertion is generated.

### Alternative Text

* Finds all image elements in the document and checks if they have an ALT text present. If ALT text is found, a message is created displaying the ALT text.

### Decorative Images

* Identifies decorative images on the webpage. Images are classified as decorative based on various attributes (aria-hidden, and alt). Each classification creates a message explaining why the image is classified as decorative.

### Missing ALT Attributes

* Identifies images that are missing an ALT attribute. It looks for all the img elements in the document and checks if they have the alt attribute. If not, a message is generated indicating that the image is missing an ALT attribute.

## SVG

### SVG Accessible Name

* Checks all SVG elements in the document for the presence of accessible names. It categorizes SVGs based on certain criteria such as, the svg has a role of 'img' but is missing an accessible name, if it is following best practices for a meaningful SVG, and if it is missing 'aria-hidden' or 'role img', or an accessible name. For each case, a message is generated explaining the status of the SVG.

### Decorative SVG
* Checks all SVG elements in a document to identify which ones are decorative. Decorative SVGs are marked with 'aria-hidden true'. If the SVG has an accessible name, a message will be created that shows it's marked as decorative but has an accessible name.                    

معلومات أساسية عن التمديد

الاسم Image ALT Image ALT
ID boapfjenhbedppddepigmcmeogjlbfjg
عنوان URL الرسمي https://chromewebstore.google.com/detail/image-alt/boapfjenhbedppddepigmcmeogjlbfjg
الوصف Check all image and SVG elements are accessible.
حجم الملف 77.84 KB
عدد التثبيتات 1,190
النسخة الحالية Final Build
آخر تحديث 2023-10-30
تاريخ النشر 2019-02-14
تقييم 4.00/5 مجموع تقييمات 1
المطور Laurence Lewis
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image ALT",
    "short_name": "A11y Image Checks",
    "version": "2023.10.29",
    "version_name": "Final Build",
    "manifest_version": 3,
    "description": "Check all image and SVG elements are accessible.",
    "author": "Laurence Lewis (@LaurenceRLewis)",
    "minimum_chrome_version": "92",
    "icons": {
        "16": "extension\/icons\/ia-icon-16.png",
        "48": "extension\/icons\/ia-icon-48.png",
        "64": "extension\/icons\/ia-icon-64.png",
        "128": "extension\/icons\/ia-icon-128.png"
    },
    "action": {
        "default_popup": "extension\/ui\/popup.html",
        "default_icon": {
            "16": "extension\/icons\/ia-icon-16.png",
            "48": "extension\/icons\/ia-icon-48.png"
        },
        "default_title": "Image ALT"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "extension\/service-worker.js"
    }
}