Delete the Element

Delete the Element

Right click on any element and click Delete Element to remove them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Delete the Element",
  "version": "0.0.1",
  "description": "Right click on any element and click Delete Element to remove them",
  "author": "Taufik Nur Rahmanda",
  "icons": {
    "16": "icon-bitty.png",
    "48": "icon-small.png",
    "128": "icon-large.png"
  },
  "permissions": [
    "contextMenus",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}