Plants Vs Zombies Cursor

Plants Vs Zombies cursor for chrome. New browser experience with custom Plants Vs Zombies cursor. For Plants Vs Zombies fans.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Plants Vs Zombies cursor for chrome. New browser experience with custom Plants Vs Zombies cursor. For Plants Vs Zombies fans.",
  "name": "Plants Vs Zombies Cursor",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "storage",
    "*://*/*"
  ],
  "version": "19.250.628.98",
  "web_accessible_resources": [
    "cur/*.*"
  ]
}