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文件

下載MAUVE ++ Plugin Validator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    ]
}