Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

Wat is Duplicate ID Finder?

Duplicate ID Finder is een Chrome-extensie ontwikkeld door pierre-jean, en de belangrijkste functie is "Finds all duplicate HTML IDs on the current page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Duplicate ID Finder

Download Duplicate ID Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
Officiële URL https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Beschrijving Finds all duplicate HTML IDs on the current page
Bestandsgrootte 528 KB
Aantal Installaties 308
Huidige Versie 1.5
Laatst Bijgewerkt 2023-02-27
Publicatiedatum 2023-02-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar pierre-jean
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}