Live HTML Validator

The plugin for live HTML validation of a browser page during web development.

Live HTML Validator란 무엇입니까?

Live HTML Validator은(는) Yuriy Svetlov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The plugin for live HTML validation of a browser page during web development."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Live HTML Validator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is the browser plugin that performs live HTML validation on a browser page, but you can also perform HTML validation at the click of a button.

► Pros
• Auto/No auto/Input - HTML validation.
• Delay before HTML validation (If HTML elements are created dynamically. e.g. using JavaScript).
• HTML validation for both server and client code, or only server code.
• Visual notification (if HTML is invalid).
• Sound notification (if HTML is invalid).
• Notification on plugin icon (Viewing process validation).
• Notification on web-page (Viewing process validation).
• Filter level reporting.
• Filter messages reporting.
• Filter HTML before validation (if you need to remove anything before HTML validation).
• Ability to select a server for HTML validation. (You can also use your own server).
•  Save cache to avoid page re-validation.
• Supports remote server connection.
• SSL connection support.

► Official website «Live HTML Validator»
https://live-html-validator.com/

► Packages and documentation
https://live-html-validator.com/documentation
https://github.com/Yuriy-Svetlov/live-html-validator

► You may also want to use separately:
https://live-reload-browser-page.com
https://live-alert-browser-page.com                    

확장 프로그램 기본 정보

이름 Live HTML Validator Live HTML Validator
ID hojcgkcomonibjdgfohcginmooigkjdg
공식 URL https://chromewebstore.google.com/detail/live-html-validator/hojcgkcomonibjdgfohcginmooigkjdg
설명 The plugin for live HTML validation of a browser page during web development.
파일 크기 3.83 MB
설치 횟수 28
현재 버전 1.0.0
최근 업데이트 2021-11-26
출시 날짜 2021-11-11
개발자 Yuriy Svetlov
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://live-html-validator.com/
도움말 페이지 URL https://live-html-validator.com/contacts
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Live HTML Validator",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "The plugin for live HTML validation of a browser page during web development.",
    "icons": {
        "16": "images\/off_19x19_v1.png",
        "32": "images\/off_32x32_v1.png",
        "48": "images\/off_48x48_v1.png",
        "128": "images\/off_128x128_v1.png"
    },
    "options_page": "build\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "build\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/off_19x19_v1.png",
        "default_popup": "build\/index.html"
    },
    "permissions": [
        "storage"
    ]
}