1 Click Image Downloader

1 Click Image Downloader

Shift + Right Click to download any image. Support downloading original images from Google Image Search and Bing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "1 Click Image Downloader",
  "description": "Shift + Right Click to download any image. Support downloading original images from Google Image Search and Bing.",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery/jquery-1.11.0.min.js",
        "libs.js",
        "main.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "media/logo.png"
  },
  "web_accessible_resources": [
    "jquery/jquery-1.11.0.min.js",
    "jquery/jquery-1.11.0.min.map",
    "iframes/loading.html",
    "iframes/error.html",
    "options/options.html"
  ],
  "options_page": "options/options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}