ContextDeleter

ContextDeleter

ContextDeleter allows you to delete HTML elements on the fly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "ContextDeleter",
  "version": "2.1.5",
  "manifest_version": 2,
  "author": "Juan L. Sanchez",
  "description": "__MSG_extDesc__",
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*",
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "minimum_chrome_version": "6.0.0.0",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "default_locale": "en"
}