Toggleable Chrome Unicorns

Toggleable Chrome Unicorns

This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Toggleable Chrome Unicorns",
  "version": "1.0",
  "web_accessible_resources": [
    "unicorns/*.jpg"
  ],
  "background": {
    "scripts": [
      "unicorn.js"
    ]
  },
  "icons": {
    "16": "ic16.png",
    "48": "ic48.png",
    "128": "ic128.png"
  },
  "browser_action": {
    "default_icon": "ic128.png",
    "default_popup": "popup.html",
    "default_title": "Chrome Unicorns"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "unicorn.js"
      ]
    }
  ]
}