Examine source code of JSONPeek

Inspect and view changes in JSONPeek 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
{
  "manifest_version": 2,
  "name": "JSONPeek",
  "description": "Listen for JSONP endpoints.",
  "version": "1.2",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "activeTab",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{90f1a754-f2a3-4683-a5fd-981ccabc8843}"
    }
  },
  "icons": {
    "512": "icons/eye-512.png"
  }
}