get the image!

get the image!

This allows you to download a batch zip of images from a web page's documentation and css.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "get the image!",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "This allows you to download a batch zip of images from a web page's documentation and css.",
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "img/240770894_197005722494949_3678857227278718278_n.png",
    "48": "img/240770894_197005722494949_3678857227278718278_n.png",
    "128": "img/240770894_197005722494949_3678857227278718278_n.png"
  },
  "permissions": [
    "http://*/*/",
    "https://*/*/"
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js",
        "jszip.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}