Every Bee

Every Bee

Replaces every bee on a webpage with the entire Bee Movie script

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Every Bee",
  "version": "1.1",
  "description": "Replaces every bee on a webpage with the entire Bee Movie script",
  "icons": {
    "16": "bee16.png",
    "32": "bee32.png",
    "48": "bee48.png",
    "128": "bee128.png"
  },
  "author": "Matt Gustin",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}