RemoveElement

RemoveElement

Remove HTML elements from the right-click context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RemoveElement",
  "version": "0.0.6",
  "description": "Remove HTML elements from the right-click context menu",
  "icons": {
    "16": "icons/icon-16.png",
    "19": "icons/icon-19.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/removeElement.js"
      ]
    }
  ],
  "manifest_version": 2
}