Examine source code of devtools-highlighter

Inspect and view changes in devtools-highlighter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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}"
    }
  }
}