HTML Visual Validation

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

HTML Visual Validation là gì?

HTML Visual Validation là một tiện ích mở rộng Chrome được phát triển bởi btisseo, và tính năng chính của nó là "HTML Visual Validation gives you information about the html elements, live, on page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HTML Visual Validation

Tải xuống các tệp mở rộng HTML Visual Validation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTML Visual Validation HTML Visual Validation
ID hicjdabjhdmaaabgackleegipabmeack
URL Chính Thức https://chromewebstore.google.com/detail/html-visual-validation/hicjdabjhdmaaabgackleegipabmeack
Mô tả HTML Visual Validation gives you information about the html elements, live, on page.
Kích Thước Tệp 54.54 KB
Số Lần Cài Đặt 3,476
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2021-11-03
Ngày Phát Hành 2018-09-25
Đánh Giá 4.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển btisseo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}