Bees For You

Replaces images with a dancing bee
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",
  "name": "Bees For You",
  "manifest_version": 2,
  "version": "1.0",
  "author": "Carlos",
  "icons": {
    "128": "icon.png"
  },
  "description": "Replaces images with a dancing bee",
  "permissions": [
    "tabs",
    "*://*./*",
    "*://*./*"
  ],
  "web_accessible_resources": [
    "bee.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*./*",
        "*://*./*"
      ],
      "js": [
        "jq.js",
        "script.js"
      ]
    }
  ]
}