Dup-ID - Scans html for duplicate ID attrs

Dup-ID - Scans html for duplicate ID attrs

Dup-ID - Scans html tags for duplicate ID attributes. Also lists all IDs found on page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dup-ID - Scans html for duplicate ID attrs",
  "description": "Dup-ID - Scans html tags for duplicate ID attributes. Also lists all IDs found on page.",
  "version": "1.4",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Dup-ID",
    "default_icon": "icon_128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "manifest_version": 2
}