Delete Elements

Delete Elements

Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Delete Elements",
  "version": "1.0",
  "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!",
  "permissions": [],
  "page_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "js": [
        "add_to_website.js"
      ]
    }
  ],
  "manifest_version": 2
}