MAUVE ++ Plugin Validator

Send the current page to MAUVE Accessibility Validator

MAUVE ++ Plugin Validator란 무엇입니까?

MAUVE ++ Plugin Validator은(는) https://mauve.isti.cnr.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send the current page to MAUVE Accessibility Validator"입니다.

확장 프로그램 스크린샷

screenshot

MAUVE ++ Plugin Validator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/                    

확장 프로그램 기본 정보

이름 MAUVE ++ Plugin Validator MAUVE ++ Plugin Validator
ID kcgdmcdcfdndebgedfppkgddngfmjmhc
공식 URL https://chromewebstore.google.com/detail/mauve-++-plugin-validator/kcgdmcdcfdndebgedfppkgddngfmjmhc
설명 Send the current page to MAUVE Accessibility Validator
파일 크기 77.15 KB
설치 횟수 136
현재 버전 1.3.1
최근 업데이트 2023-12-06
출시 날짜 2023-11-20
개발자 https://mauve.isti.cnr.it
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://mauve.isti.cnr.it/about.jsp
개인정보 보호 정책 페이지 URL https://mauve.isti.cnr.it/privacy.jsp
지원되는 언어 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
        }
    ]
}