Save Images to Drive

Save Images to Drive

Allow to Save images from web page to your Drive

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "name": "Save Images to Drive",
  "description": "Allow to Save images from web page to your Drive",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; https://apis.google.com; object-src 'self'",
  "browser_action": {
    "default_icon": "drive_icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.2.4.js",
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "drive_icon_32.png",
    "48": "drive_icon.png",
    "128": "drive_icon_128.png"
  }
}