Kingsquare HTML Validator

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

什麼是Kingsquare HTML Validator?

Kingsquare HTML Validator是由https://kingsquare.nl開發的Chrome擴展程式,該擴展的主要功能是“A HTML5 validation library, using a JavaScript port of the excellent TIDY library”。

擴展截圖

screenshot
screenshot

下載Kingsquare HTML Validator擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Kingsquare HTML Validator Kingsquare HTML Validator
ID anjdemaoejlpgmnmkijdemoiebcddhkc
官方網址 https://chromewebstore.google.com/detail/kingsquare-html-validator/anjdemaoejlpgmnmkijdemoiebcddhkc
簡介 A HTML5 validation library, using a JavaScript port of the excellent TIDY library
檔案大小 1 MB
安裝次數 2,272
目前版本 1.4
更新時間 2012-08-28
上架時間 2012-08-28
評分 2.86/5 共 36 次評分
開發者 https://kingsquare.nl
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.kingsquare.nl/html-validator
支援的語言 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
}