Full Image Downloader - Download all images

Full Image Downloader - Download all images

Filter by size, proper file names. Image downloader supports PNG GIF JPG, SVG files. Download images in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.0.1",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "/background.js"
  },
  "icons": {
    "16": "/icons/icon-16.png",
    "24": "/icons/icon-24.png",
    "32": "/icons/icon-32.png",
    "48": "/icons/icon-48.png",
    "64": "/icons/icon-64.png",
    "96": "/icons/icon-96.png",
    "128": "/icons/icon-128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ]
}