a11y.css

a11y.css provides warnings about possible risks and mistakes that exist in HTML.

a11y.css क्या है?

a11y.css gael.poupard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "a11y.css provides warnings about possible risks and mistakes that exist in HTML."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में a11y.css एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        First a11y.css was a bookmarklet inserting a stylesheet into the page.

This CSS file intends to warn developers about possible risks and mistakes that exist in HTML code. It can also be used to roughly evaluate a site's quality by simply including it as an external stylesheet.


This extension does the same, plus adds some tools:

— Outline focus (keyboard navigation)
— Show languages used (relies on lang attributes)
—Check alt and title attributes on images


You can submit your bugs on github.

Original bookmarklet code: Gaël Poupard
Extension code: Stéphane Deschamps
Thanks to Anthony Ricaud and Mathieu Pillard for their help!                    

एक्सटेंशन की मूल जानकारी

नाम a11y.css a11y.css
ID iolfinldndiiobhednboghogkiopppid
आधिकारिक URL https://chromewebstore.google.com/detail/a11ycss/iolfinldndiiobhednboghogkiopppid
विवरण a11y.css provides warnings about possible risks and mistakes that exist in HTML.
फ़ाइल का आकार 596 KB
स्थापना संख्या 2,303
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2023-08-23
प्रकाशन तिथि 2019-05-10
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर gael.poupard
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://ffoodd.github.io/a11y.css
सहायता पृष्ठ URL https://github.com/ffoodd/a11y.css-webextension
समर्थित भाषाएँ en,fr,es,pl,el,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "a11y.css",
    "description": "a11y.css provides warnings about possible risks and mistakes that exist in HTML.",
    "version": "2.0.1",
    "default_locale": "en",
    "minimum_chrome_version": "93",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "scripting"
    ],
    "action": {
        "default_title": "a11y.css",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "19": "icons\/a11y-css_19.png",
            "38": "icons\/a11y-css_38.png"
        }
    },
    "background": {
        "service_worker": "\/scripts\/background\/main.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/scripts\/injected\/alt.js"
            ],
            "css": [
                "\/scripts\/injected\/alt.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/a11y-css_16.png",
        "48": "icons\/a11y-css_48.png",
        "128": "icons\/a11y-css_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/info.svg",
                "icons\/ko.svg",
                "icons\/ok.svg",
                "scripts\/injected\/*",
                "css\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}