Image Downloader - Bulk download images

Image Downloader - Bulk download images

Browse and download images on the web. Save fav image or select all at once to bulk download.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/content-sidebar.css",
        "css/chunk-common.css",
        "css/sidebar.css"
      ],
      "js": [
        "js/content-sidebar.js",
        "js/chunk-vendors.js",
        "js/chunk-common.js",
        "js/sidebar.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "js/images-observer.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "js/image-overlay.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://chrome.google.com/webstore/detail/bulk-image-downloader/klmiibolojjndggdnjnjggmgimlcalch/reviews",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "<all_urls>",
    "downloads",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.6"
}