Spoiler-free IMDb

Spoiler-free IMDb

Hide IMDb spoilers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spoiler-free IMDb",
  "description": "Hide IMDb spoilers",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "assets/icon_16.png",
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "assets/icon_16.png",
      "48": "assets/icon_48.png"
    },
    "default_title": "Spoiler-free IMDb",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.imdb.com/*"
      ],
      "js": [
        "remove-spoilers.js"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "storage",
    "http://www.imdb.com/*"
  ]
}