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
Eメール [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"
    }
}