Breaking Clicking Bad

Breaking Clicking Bad

I am the one who cheats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Breaking Clicking Bad",
  "content_scripts": [
    {
      "matches": [
        "http://*.nullism.com/*"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "jquery.js",
    "popup.js",
    "hector.png"
  ],
  "description": "I am the one who cheats.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png"
  }
}