Kingsquare HTML Validator

A HTML5 validation library, using a JavaScript port of the excellent TIDY library

What is Kingsquare HTML Validator?

Kingsquare HTML Validator is a Chrome extension developed by https://kingsquare.nl, and its main feature is "A HTML5 validation library, using a JavaScript port of the excellent TIDY library".

Extension Screenshots

screenshot
screenshot

Download Kingsquare HTML Validator Extension CRX File

Download Kingsquare HTML Validator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension brings the the TIDY HTML Validation library to your browser. You will no longer need remote services to validate your HTML(5). This is the first offline HTML validator for Chrome.

For more information on the project, see http://www.kingsquare.nl/html-validator

** PLEASE NOTE **

Please restart your browser after installing the extension.

Open the development tools panel to activate the validator. Every page will get validated automatically, check the flag at the end of your address bar to see the current status. See the last tab of the development tools to get a full report.                    

Extension Basic Information

Name Kingsquare HTML Validator Kingsquare HTML Validator
ID anjdemaoejlpgmnmkijdemoiebcddhkc
Official URL https://chromewebstore.google.com/detail/kingsquare-html-validator/anjdemaoejlpgmnmkijdemoiebcddhkc
Description A HTML5 validation library, using a JavaScript port of the excellent TIDY library
File Size 1 MB
Installation Count 2,272
Current Version 1.4
Last Updated 2012-08-28
Publish Date 2012-08-28
Rating 2.86/5 Total 36 Ratings
Developer https://kingsquare.nl
Email [email protected]
Payment Type free
Extension Website http://www.kingsquare.nl/html-validator
Supported Languages en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kingsquare HTML Validator",
    "version": "1.4",
    "manifest_version": 2,
    "description": "A HTML5 validation library, using a JavaScript port of the excellent TIDY library",
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "page_action": {
        "default_icon": "loading.gif",
        "default_title": "Checkout Development Tools \/ HTML validator for more info"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*"
    ],
    "offline_enabled": true
}