Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

Hvad er Duplicate ID Finder?

Duplicate ID Finder er en Chrome-udvidelse udviklet af pierre-jean, og dens hovedfunktion er "Finds all duplicate HTML IDs on the current page".

Udvidelsesskærmbilleder

screenshot

Download Duplicate ID Finder-udvidelses-CRX-fil

Download Duplicate ID Finder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
Officiel URL https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Beskrivelse Finds all duplicate HTML IDs on the current page
Filstørrelse 528 KB
Antal Installationer 308
Nuværende Version 1.5
Senest Opdateret 2023-02-27
Udgivelsesdato 2023-02-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler pierre-jean
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}