Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

What is Duplicate ID Finder?

Duplicate ID Finder is a Chrome extension developed by pierre-jean, and its main feature is "Finds all duplicate HTML IDs on the current page".

Extension Screenshots

screenshot

Download Duplicate ID Finder Extension CRX File

Download Duplicate ID Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
Official URL https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Description Finds all duplicate HTML IDs on the current page
File Size 528 KB
Installation Count 308
Current Version 1.5
Last Updated 2023-02-27
Publish Date 2023-02-24
Rating 5.00/5 Total 1 Ratings
Developer pierre-jean
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}