Funky colors

Funky colors

Funky colors everywhere when you mouse move, good for pranking someone or just have fun. The secret password is funky ;)

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Funky colors",
  "version": "1.0.3",
  "description": "Funky colors everywhere when you mouse move, good for pranking someone or just have fun. The secret password is funky ;)",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "off.png",
    "default_title": "Press the button to get FUNKY\n                       now it's OFF"
  }
}