imazip

imazip

Download images in web page as a zip file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "imazip",
  "version": "1.0.5",
  "description": "Download images in web page as a zip file.",
  "icons": {
    "128": "img/icon_16.png"
  },
  "browser_action": {
    "default_icon": "img/icon_16.png",
    "default_title": "imazip"
  },
  "author": "hatz48",
  "background": {
    "scripts": [
      "js/jszip.js",
      "js/uri.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "incognito": "split",
  "content_scripts": [
    {
      "matches": [
        "https://www.tumblr.com/search/*"
      ],
      "js": [
        "js/jquery-2.0.3.js",
        "js/helpers/tumblr.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "activeTab",
    "downloads"
  ]
}