Image Downloader

Image Downloader

Browse and download images on the web

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image Downloader",
  "description": "Browse and download images on the web",
  "version": "3.4.2",
  "minimum_chrome_version": "72",
  "manifest_version": 2,
  "icons": {
    "16": "/images/icon_16.png",
    "48": "/images/icon_48.png",
    "128": "/images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "/images/icon_128.png",
    "default_popup": "/src/Popup/index.html"
  },
  "options_page": "/src/Options/index.html",
  "background": {
    "persistent": true,
    "scripts": [
      "/src/background/downloadImages.js",
      "/src/background/handleUpdates.js"
    ]
  },
  "permissions": [
    "activeTab",
    "downloads",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ]
}