Dom Element Counter

Dom Element Counter

Displays count of DOM elements on page. Compatible with latest Firefox. Popup window shows DOM element summary by tag. Reload page to make it work for tabs that were opened before add-on installation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Dom Element Counter",
  "version": "1.1resigned1",
  "description": "Display count of DOM elements on page.",
  "icons": {
    "16": "icons/icon-button-16.png",
    "32": "icons/icon-button-32.png",
    "48": "icons/icon-48.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "45.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/icon-button-32.png",
    "default_title": "Dom Element Counter",
    "default_popup": "popup/page.html"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  }
}