qualweb-extension
Accessibility evaluation using QualWeb
Co to jest qualweb-extension?
qualweb-extension to rozszerzenie Chrome opracowane przez QualWeb, a jego główną funkcją jest „Accessibility evaluation using QualWeb”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia qualweb-extension
Pobierz pliki rozszerzeń qualweb-extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
QualWeb is an automated web accessibility evaluation service. QualWeb is able to automatically check a webpage against a set of WCAG 2.1 Techniques and ACT Rules. QualWeb is open-source and available at https://github.com/qualweb. Version 1.1.11 introduces a new ACT rule and bug fixes Version 1.1.10 introduces bug fixes Version 1.1.09 introduces bug fixes Version 1.1.08 removes 4 deprecated ACT rules Version 1.1.07 introduces bug fixes Version 1.1.06 introduces bug fixes Version 1.1.05 introduces bug fixes Version 1.1.04 introduces bug fixes Version 1.1.03 updates to new version of modules Version 1.1.01 introduces bug fixes Version 1.1.0 updates to new version of modules Version 1.0.9 introduces bug fixes. Version 1.0.8 introduces bug fixes. Version 1.0.7 introduces performance improvements Version 1.0.6 introduces support to further ACT rules and bug fixes.
Podstawowe informacje o rozszerzeniu
Nazwa | qualweb-extension |
ID | ljgilomdnehokancdcbkmbndkkiggioc |
Oficjalny URL | https://chromewebstore.google.com/detail/qualweb-extension/ljgilomdnehokancdcbkmbndkkiggioc |
Opis | Accessibility evaluation using QualWeb |
Rozmiar pliku | 589 KB |
Liczba instalacji | 556 |
Aktualna Wersja | 1.1.11 |
Ostatnia Aktualizacja | 2024-02-11 |
Data Publikacji | 2020-12-10 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | QualWeb |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://www.qualweb.di.fc.ul.pt/evaluator/ |
Adres URL Strony Pomocy | https://github.com/qualweb/qualweb-extension |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "qualweb-extension", "description": "Accessibility evaluation using QualWeb", "version": "1.1.11", "manifest_version": 3, "icons": { "48": "icons\/icon_48.ico" }, "background": { "service_worker": "background.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js", "act.js", "wcag.js", "qwPage.js", "util.js", "locales\/en.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/logoQW.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "devtools_page": "devtools.html" } |