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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}