DOM Destroyer

DOM Destroyer

Delete anything on a website with a click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DOM Destroyer",
  "description": "Delete anything on a website with a click.",
  "homepage_url": "http://github.com/uniphil/dom-destroyer",
  "version": "0.4.1",
  "minimum_chrome_version": "88",
  "action": {
    "default_title": "Destroy DOM elements",
    "default_icon": "destroy_128.png"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    }
  },
  "icons": {
    "128": "active_destroy_128.png"
  }
}