DOM Highlighter

Highlight DOM elements

DOM Highlighter là gì?

DOM Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Yuri Labzin, và tính năng chính của nó là "Highlight DOM elements".

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

screenshot

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

Tải xuống các tệp mở rộng DOM Highlighter 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

                        Clicking on the extension icon activates/deactivates the DOM highlighting of the page elements of the current tab.
In the settings window, you can set the parameters of the highlight lines and limit the highlighting of elements by the mask of selectors.                    

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

Tên DOM Highlighter DOM Highlighter
ID cgmagalnhglnafodhkkojjiaejpdkbho
URL Chính Thức https://chromewebstore.google.com/detail/dom-highlighter/cgmagalnhglnafodhkkojjiaejpdkbho
Mô tả Highlight DOM elements
Kích Thước Tệp 52.1 KB
Số Lần Cài Đặt 642
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2019-09-04
Ngày Phát Hành 2019-09-04
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Yuri Labzin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/YuriLabzin/dom-highlighter
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "version": "0.1.4",
    "manifest_version": 2,
    "author": "Yuri Labzin",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "assets\/images\/icons\/default-16.png",
        "48": "assets\/images\/icons\/default-48.png",
        "128": "assets\/images\/icons\/default-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/images\/icons\/default-16.png",
            "48": "assets\/images\/icons\/default-48.png",
            "128": "assets\/images\/icons\/default-128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "settings-popup\/settings-popup.html",
        "assets\/images\/icons\/active-48.png",
        "assets\/images\/icons\/default-48.png",
        "assets\/images\/close-icon.svg"
    ]
}