One-Handed Image Downloader

One-Handed Image Downloader

A mouseless, fast & easy way to save pictures from any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "One-Handed Image Downloader",
  "version": "1.0.1",
  "description": "A mouseless, fast & easy way to save pictures from any website",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/contentscript.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "save-image": {
      "description": "Saves the first image on the page",
      "suggested_key": {
        "default": "Ctrl+K",
        "linux": "Ctrl+K",
        "mac": "Command+K"
      }
    },
    "close-overlay": {
      "description": "Closes the overlay",
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      }
    }
  }
}