Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

Vad är Duplicate ID Finder?

Duplicate ID Finder är en Chrome-tillägg utvecklad av pierre-jean, och dess huvudfunktion är "Finds all duplicate HTML IDs on the current page".

Tilläggsskärmbilder

screenshot

Ladda ner Duplicate ID Finder-förlängningens CRX-fil

Ladda ner Duplicate ID Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
Officiell webbadress https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
Beskrivning Finds all duplicate HTML IDs on the current page
Filstorlek 528 KB
Antal Installationer 308
Aktuell Version 1.5
Senast Uppdaterad 2023-02-27
Publiceringsdatum 2023-02-24
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare pierre-jean
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}