Random Background Color

Random Background Color

Show a random background color on the Google.com homepage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Random Background Color",
  "description": "Show a random background color on the Google.com homepage.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "version": "0.1",
  "manifest_version": 2,
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.google.com/*",
        "https://*.google.com/*"
      ],
      "js": [
        "jquery-2.0.3.min.js",
        "extension.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-2.0.3.min.map"
  ]
}