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
官方URL 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"
    }
}