a11y.css
a11y.css provides warnings about possible risks and mistakes that exist in HTML.
a11y.css là gì?
a11y.css là một tiện ích mở rộng Chrome được phát triển bởi gael.poupard, và tính năng chính của nó là "a11y.css provides warnings about possible risks and mistakes that exist in HTML.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng a11y.css
Tải xuống các tệp mở rộng a11y.css dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | a11y.css |
ID | iolfinldndiiobhednboghogkiopppid |
URL Chính Thức | https://chromewebstore.google.com/detail/a11ycss/iolfinldndiiobhednboghogkiopppid |
Mô tả | a11y.css provides warnings about possible risks and mistakes that exist in HTML. |
Kích Thước Tệp | 596 KB |
Số Lần Cài Đặt | 2,303 |
Phiên Bản Hiện Tại | 2.0.1 |
Cập Nhật Lần Cuối | 2023-08-23 |
Ngày Phát Hành | 2019-05-10 |
Đánh Giá | 3.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | gael.poupard |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://ffoodd.github.io/a11y.css |
URL Trang Trợ Giúp | https://github.com/ffoodd/a11y.css-webextension |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } ] } |