Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

Duplicate ID Finder là gì?

Duplicate ID Finder là một tiện ích mở rộng Chrome được phát triển bởi pierre-jean, và tính năng chính của nó là "Finds all duplicate HTML IDs on the current page".

Ả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 Duplicate ID Finder

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

                        This extension simplifies the detection of duplicate HTML IDs on webpages, making it easier for web developers to identify and resolve issues related to CSS and HTML.                    

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

Tên Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
URL Chính Thức https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Mô tả Finds all duplicate HTML IDs on the current page
Kích Thước Tệp 528 KB
Số Lần Cài Đặt 308
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2023-02-27
Ngày Phát Hành 2023-02-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển pierre-jean
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duplicate ID Finder",
    "version": "1.5",
    "description": "Finds all duplicate HTML IDs on the current page",
    "manifest_version": 3,
    "icons": {
        "32": "icon-32.png",
        "128": "icon-128.png",
        "512": "icon-512.png"
    },
    "action": {
        "default_icon": {
            "32": "icon-32.png",
            "128": "icon-128.png",
            "512": "icon-512.png"
        },
        "default_title": "Duplicate ID Finder",
        "badge": {
            "color": [
                0,
                0,
                255,
                0
            ],
            "text": "0"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    }
}