ChuckIt

ChuckIt

An extension that allows a user to temporarily destroy any element on their active webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChuckIt",
  "version": "0.0.0.2",
  "description": "An extension that allows a user to temporarily destroy any element on their active webpage",
  "browser_action": {
    "default_icon": "images/off.png",
    "default_title": "ChuckIt"
  },
  "icons": {
    "16": "images/off.png",
    "48": "images/bomb48.png",
    "128": "images/bomb128.png"
  },
  "author": "David Noah",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "js/events.js"
    ]
  }
}