Examine source code of Blur: IMDB Episode Blurrer

Inspect and view changes in Blur: IMDB Episode Blurrer 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": "Blur: IMDB Episode Blurrer",
  "description": "Hides potential-spoiler information from IMDB.",
  "version": "1.5resigned1",
  "browser_action": {
    "default_icon": "resources/icon.png",
    "default_title": "Blur! Prevent potential-spoiler information from IMDB"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.imdb.com/*",
        "https://www.imdb.com/*"
      ],
      "css": [
        "./css/core.css"
      ],
      "js": [
        "./js/core.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "webNavigation",
    "*://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{b1516d2c-4c8c-4a77-b91f-e9ba8d3ea6a5}"
    }
  }
}