Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

Cos'è Duplicate ID Finder?

Duplicate ID Finder è un'estensione di Chrome sviluppata da pierre-jean, e la sua funzione principale è "Finds all duplicate HTML IDs on the current page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Duplicate ID Finder

Scarica i file di estensione Duplicate ID Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
URL Ufficiale https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Descrizione Finds all duplicate HTML IDs on the current page
Dimensione del File 528 KB
Conteggio Installazioni 308
Versione Corrente 1.5
Ultimo Aggiornamento 2023-02-27
Data di Pubblicazione 2023-02-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore pierre-jean
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}