MAUVE ++ Plugin Validator
Send the current page to MAUVE Accessibility Validator
MAUVE ++ Plugin Validator क्या है?
MAUVE ++ Plugin Validator https://mauve.isti.cnr.it द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send the current page to MAUVE Accessibility Validator"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MAUVE ++ Plugin Validator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } ] } |