Image Downloader

Image Downloader

Find images on web pages, sort them by resolution or format, download one image or select all to bulk download.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "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-image-fi/jfafkhnopckjfmnpekbmpmghhdlijaja/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"
  ],
  "version": "0.1.4"
}