Display Element Information

Display Element Information

The Firefox addon "Display Element Information" provides users with a comprehensive tool for inspecting and understanding elements on web pages. With its intuitive interface, users can easily hover over any element to view detailed information

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Display Element Information",
  "version": "1.0",
  "description": "Displays information about HTML elements on the current webpage.",
  "permissions": [
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}