Target Images Downloader

Target Images Downloader

Simplify your Target image downloads: Effortlessly obtain high-resolution product photos from Target.com with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "identity",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "*://targetimagesdownloader.extensionsbox.com/*",
    "*://*.target.com/*",
    "*://*.scene7.com/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.target.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAky4BjAWiUkP7jw5+TgxVAnCtgqO7An8E7dBF9tjiVwSNmSLLuf+AHV1qlyyrC48EVFY3C83X389XRfZ1zaDCXyFtdHV+hMsiMU33W4c6AYRl2BWldvFbBF4n3ZrZjeDBzrNvgfvbo5IQhAJpKonOiZH2HDguy0rrWHP7TUqLAoNGQ9jb6J7wL3nlCtI4C6Kn90kdFtAOeWS9DUBB8OHob02uKSnIS3U2rWyKDBQnJAsBhghWAV+OuR7xRTM2of3idMs4mOALU+xxY6hvevfzDgymztbICYvgD/jEjifiUsASTCV/VUeS2/DZhuFlRgAAIQhJi08dfse1GCdCsM0zowIDAQAB",
  "oauth2": {
    "client_id": "843873670065-bcoq9b2j0o4hmivrack51rsag8j0espl.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "libs/*",
        "injected.js",
        "downloader.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}