Image downloader Korag

Image downloader Korag

Simple way to find and download all images on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "64.png",
    "default_popup": "options/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Simple way to find and download all images on the web",
  "icons": {
    "16": "32.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "manifest_version": 3,
  "name": "Image downloader Korag",
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "0.3",
  "web_accessible_resources": [
    {
      "resources": [
        "content/page-style.css",
        "content/external-link.svg",
        "content/download.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}