HD Image Downloader - Nero Lens for Chrome

HD Image Downloader - Nero Lens for Chrome

This efficient tool helps you download small photos from the web with 4x larger size and clearer results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.4",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "www/index.html#/popup",
    "default_title": "HD Image Downloader - Nero Lens for Chrome"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "my-content-script.js"
      ],
      "css": [
        "assets/content.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "name": "HD Image Downloader - Nero Lens for Chrome",
  "short_name": "HD Image Downloader - Nero Lens for Chrome",
  "description": "This efficient tool helps you download small photos from the web with 4x larger size and clearer results."
}