devtools-highlighter

devtools-highlighter

Find and highlight elements on the page with this DevTools panel, using CSS styles and selectors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Element finder and highlighter DevTools panel",
  "manifest_version": 2,
  "name": "devtools-highlighter",
  "version": "1.2.1resigned1",
  "author": "Patrick Brosset",
  "homepage_url": "https://github.com/captainbrosset/devtools-highlighter",
  "icons": {
    "48": "icons/logo.svg"
  },
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ]
  },
  "permissions": [
    "<all_urls>"
  ],
  "devtools_page": "devtools/devtools-page.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/content.js"
      ],
      "css": [
        "content_scripts/content.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ff0cf743-dcf3-4097-ae4c-d872c18f7b4e}"
    }
  }
}