Deletion Prank

Deletion Prank

Delete any element that is clicked

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Deletion Prank",
  "short_name": "Deletion Prank",
  "description": "Delete any element that is clicked",
  "version": "0.0.3",
  "browser_action": {
    "default_image": "asets/enabled_256.png"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "icons": {
    "256": "assets/enabled_256.png"
  },
  "background": {
    "scripts": [
      "iconcontroller.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}