Kingsquare HTML Validator

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

Что такое Kingsquare HTML Validator?

Kingsquare HTML Validator - это расширение Chrome, разработанное https://kingsquare.nl, и его основная функция - "A HTML5 validation library, using a JavaScript port of the excellent TIDY library".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Kingsquare HTML Validator

Скачайте файлы расширений 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
Официальный URL 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
}