MAUVE ++ Plugin Validator

Send the current page to MAUVE Accessibility Validator

MAUVE ++ Plugin Validator là gì?

MAUVE ++ Plugin Validator là một tiện ích mở rộng Chrome được phát triển bởi https://mauve.isti.cnr.it, và tính năng chính của nó là "Send the current page to MAUVE Accessibility Validator".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MAUVE ++ Plugin Validator

Tải xuống các tệp mở rộng MAUVE ++ Plugin Validator 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

                        This is a browser’s extension to dynamically validate the accessibility the web page loaded in the active tab; it exploits MAUVE ++ accessibility validator.

The extension serialize the DOM of the webpage loaded in the active tab and then sends the serialized DOM to MAUVE ++ accessibility valiator then it opens a new tab showing the accessibility validation report

MAUVE means Multiguideline Accessibility and Usability Validation Enviroment.
It is a is a system to evaluate accessibility of Web sites by checking their HTML and CSS code through W3C guidelines.
At the moment M.A.U.V.E. is able to validate the accessibility of web pages in relation to the following guidelines:
WCAG 2.1 ( Level A, AA, AAA)
WCAG 2.0 ( Level A, AA, AAA)

Home Page
https://mauve.isti.cnr.it/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MAUVE ++ Plugin Validator MAUVE ++ Plugin Validator
ID kcgdmcdcfdndebgedfppkgddngfmjmhc
URL Chính Thức https://chromewebstore.google.com/detail/mauve-++-plugin-validator/kcgdmcdcfdndebgedfppkgddngfmjmhc
Mô tả Send the current page to MAUVE Accessibility Validator
Kích Thước Tệp 77.15 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2023-12-06
Ngày Phát Hành 2023-11-20
Nhà Phát Triển https://mauve.isti.cnr.it
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://mauve.isti.cnr.it/about.jsp
URL Trang Chính Sách Bảo Mật https://mauve.isti.cnr.it/privacy.jsp
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Send the current page to MAUVE Accessibility Validator",
    "manifest_version": 3,
    "name": "MAUVE ++ Plugin Validator",
    "version": "1.3.1",
    "author": "Marco Manca - [email protected]",
    "homepage_url": "https:\/\/mauve.isti.cnr.it",
    "action": {
        "default_title": "Launch MAUVE++ Validation"
    },
    "icons": {
        "48": "icons\/mauve.png"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ]
}