Nuke anything reloaded

Nuke anything reloaded

Allows you to hide almost anything via context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.0",
  "default_locale": "en",
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "icon_nuke_16.png",
    "128": "icon_nuke_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}