MyBG - Google Background

MyBG - Google Background

Change background of your google default screen.Update your google white background with your favourite background images. Install…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyBG - Google Background",
  "version": "0.0.2",
  "manifest_version": 2,
  "short_name": "Google Background",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "img/logo.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "img/*.jpg"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.co.in/*",
        "https://www.google.com/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png"
  }
}