Image Downloader

Image Downloader

Get Web Images and Download

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Image Downloader",
  "version": "1.0.2",
  "description": "Get Web Images and Download",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icons128.png"
  },
  "icons": {
    "128": "icons128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentStyle.css",
        "icons128.png",
        "icons48.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "downloads"
  ]
}