HTML Validator
Validating web page
Was ist HTML Validator?
HTML Validator ist eine Chrome-Erweiterung, die von hozefa entwickelt wurde, und ihr Hauptmerkmal ist "Validating web page".
Erweiterungsscreenshots
HTML Validator-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTML Validator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension helps to validate a web-page using a validator created by Philip Walton.
This will be a useful tool when it comes to checking pages create follow HTML standards. This is especially useful for accessibility(ARIA attributes) and cleaning up un-used markup.
Usage : Open the developer tools, goto Console. Click on the extension on the browser. All the errors/warning will be shown on the console.
Reference:
Blog Link : http://philipwalton.com/articles/introducing-html-inspectorlity
Validator Source Code : https://cdnjs.cloudflare.com/ajax/libs/html-inspector/0.8.1/html-inspector.js Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jpjlkcamghnaeabinbcolngkgkpdfgod |
| Offizielle URL | https://chrome.google.com/webstore/detail/html-validator/jpjlkcamghnaeabinbcolngkgkpdfgod |
| Beschreibung | Validating web page |
| Dateigröße | 31.73 KB |
| Installationsanzahl | 150 |
| Aktuelle Version | 0.2.0 |
| Letztes Update | 2015-01-29 |
| Veröffentlichungsdatum | 2015-01-29 |
| Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
| Entwickler | hozefa |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HTML Validator",
"short_name": "HTMLValidator",
"version": "0.2.0",
"description": "Validating web page",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png"
},
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"permissions": [
"tabs",
"activeTab"
]
} | |