Gescobinho

This was made as a joke for my co-workers on our development lab. It is a bug that follows the mouse on any webpage, making fun of the user.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Gescobinho",
  "version": "1.5",
  "description": "Gescobinho, seu fiel amiguinho.",
  "author": "Calmf",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "48": "icons/bug-48.png"
  },
  "web_accessible_resources": [
    "img/bug.gif",
    "img/name.png",
    "CalmfPet.css"
  ],
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "CalmfPet.js"
      ]
    }
  ]
}