ElementHistory

ElementHistory

See what code created or updated a DOM element

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ElementHistory",
  "description": "See what code created or updated a DOM element",
  "version": "1.6",
  "browser_action": {},
  "icons": {
    "64": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "devtools_page": "devtools.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "web_accessible_resources": [
    "trackHistory.js"
  ]
}