Image downloader JPG PNG WEBP

Image downloader JPG PNG WEBP

Easy download of web images in JPG, PNG, WEBP formats with one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "version": "1.1.2",
  "icons": {
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "js/worker.js"
  },
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/message.js"
      ],
      "run_at": "document_idle",
      "match_about_blank": true
    }
  ],
  "permissions": [
    "downloads",
    "contextMenus",
    "offscreen",
    "storage",
    "webRequest",
    "activeTab",
    "scripting"
  ]
}