Event Spy

Event Spy

Spy on all events the application code listens for on a page as they fire.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Event Spy",
  "version": "0.6.1",
  "manifest_version": 2,
  "description": "Spy on all events the application code listens for on a page as they fire.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs"
  ],
  "devtools_page": "eventspy.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "EventSpy",
    "default_popup": "browser_action.html"
  }
}