HTML Visual Validation

HTML Visual Validation gives you information about the html elements, live, on page.

HTML Visual Validation란 무엇입니까?

HTML Visual Validation은(는) btisseo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HTML Visual Validation gives you information about the html elements, live, on page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

HTML Visual Validation 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It makes easy to inspect the structure of a page with no need to open the browser console. Just select the type of html tag to outline, on page, and to display a label with basic info.

Some features are:

- List the most common html tags
- Get info about the tittle and description tags
- Display tags id and class attributes
-  extra info: “alt” attribute value
-  extra info: tells you if it’s an internal or external link, or a javascript call, and if the “target” attribute is set
- Mouse over a tag label to bring it to front

*** NEW FEATURES ***
- Tag selector is now sensitive to tags available on the page
- New "DOM Tree" panel, wich can be used with the tag selector
- Click on the tag in the DOM Tree to scroll to the element on the page                    

확장 프로그램 기본 정보

이름 HTML Visual Validation HTML Visual Validation
ID hicjdabjhdmaaabgackleegipabmeack
공식 URL https://chromewebstore.google.com/detail/html-visual-validation/hicjdabjhdmaaabgackleegipabmeack
설명 HTML Visual Validation gives you information about the html elements, live, on page.
파일 크기 54.54 KB
설치 횟수 3,476
현재 버전 0.3.0
최근 업데이트 2021-11-03
출시 날짜 2018-09-25
평점 4.29/5 총 7 개의 평점
개발자 btisseo
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HTML Visual Validation",
    "description": "HTML Visual Validation gives you information about the html elements, live, on page.",
    "version": "0.3.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "displayTags.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "HTML Visual Validation"
    }
}