Image downloader

Image downloader

Image Downloader seeks and helps to download all the images from the web pages. Even those images which are hidden from view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "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"
    }
  ],
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://chrome.google.com/webstore/detail/image-downloader/kdbfjpagopjjaiofmgodphiklmjhcnok/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",
    "webRequestBlocking",
    "webRequest",
    "storage"
  ],
  "version": "0.1.24"
}