Duplicate ID Finder

Finds all duplicate HTML IDs on the current page

什麼是Duplicate ID Finder?

Duplicate ID Finder是由pierre-jean開發的Chrome擴展程式,該擴展的主要功能是“Finds all duplicate HTML IDs on the current page”。

擴展截圖

screenshot

下載Duplicate ID Finder擴展crx文件

下載Duplicate ID Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Duplicate ID Finder Duplicate ID Finder
ID ccebcgdpeapmjmihiaaoacmacbbpjagp
官方網址 https://chromewebstore.google.com/detail/duplicate-id-finder/ccebcgdpeapmjmihiaaoacmacbbpjagp
簡介 Finds all duplicate HTML IDs on the current page
檔案大小 528 KB
安裝次數 308
目前版本 1.5
更新時間 2023-02-27
上架時間 2023-02-24
評分 5.00/5 共 1 次評分
開發者 pierre-jean
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}