Zaqwes Remover

Zaqwes Remover

Addon that will help you to remove any element from page in one 2 click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zaqwes Remover",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Addon that will help you to remove any element from page in one 2 click",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "remover.png",
    "48": "remover.png",
    "128": "remover.png"
  },
  "browser_action": {
    "default_icon": "remover.png",
    "default_title": "Click to activate remove on click"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*/*.jpg",
        "http://*/*.png"
      ],
      "js": [
        "remover.js"
      ]
    }
  ]
}