a11y.css

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

什麼是a11y.css?

a11y.css是由gael.poupard開發的Chrome擴展程式,該擴展的主要功能是“a11y.css provides warnings about possible risks and mistakes that exist in HTML.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載a11y.css擴展crx文件

下載a11y.css擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}