Dom Selector

A simple document element selector for styling and tagging purposes.

Dom Selector là gì?

Dom Selector là một tiện ích mở rộng Chrome được phát triển bởi Shivam Devs, và tính năng chính của nó là "A simple document element selector for styling and tagging purposes.".

Ả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 Dom Selector

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

                        Get NodeName, classList, and id along with width, height, display, padding, margin and border of elements without opening Console.                    

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

Tên Dom Selector Dom Selector
ID bmnofgbgldbkkpgpahilcgalnjocgbla
URL Chính Thức https://chromewebstore.google.com/detail/dom-selector/bmnofgbgldbkkpgpahilcgalnjocgbla
Mô tả A simple document element selector for styling and tagging purposes.
Kích Thước Tệp 18.09 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2022-10-13
Ngày Phát Hành 2022-10-13
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Shivam Devs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shivamdevs/Dom-Selector
URL Trang Chính Sách Bảo Mật https://www.termsfeed.com/live/f552c885-d14f-47c5-864d-1ded40f9e755
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dom Selector",
    "version": "2.1.0",
    "description": "A simple document element selector for styling and tagging purposes.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selector.js"
            ]
        }
    ],
    "background": {
        "service_workers": "background.js"
    },
    "action": {
        "default_popup": "selector.html",
        "default_title": "Dom Selector",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "36": "icons\/icon36.png",
            "48": "icons\/icon48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}