Bees For You

Bees For You

Replaces images with a dancing bee

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}