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": "3.0.2",
  "manifest_version": 3,
  "description": "__MSG_extDesc__",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "https://fonts.googleapis.com/*"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "https://fonts.googleapis.com/*"
      ],
      "js": [
        "jquery.min.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "https://fonts.googleapis.com/*"
      ],
      "js": [
        "helper.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "minimum_chrome_version": "92.0.4515.107",
  "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"
}