Images Downloader for WM

Images Downloader for WM

Scrape and download high-resolution images of Walmart product listings in bulk or one by one from any listing with just a click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.5",
  "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": [
    "*://walmartreviewsextractor.extensionsbox.com/*",
    "*://*.walmart.com/*",
    "*://*.walmartimages.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": [
        "*://*.walmart.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAg1dR/gPP6cp/qGz62EMqf3DC4G4dSF9XxrG/TvihjUhvAz0NdrElnlQGd7MAWcz2lH65wTckqOYiwggnQlx9v2iCEisJTf/l82RrNA26fBhWBSFqgOIbQMnCBnFy8k44PHmivMSmtqfW7ZBxxVIZuWhUsY7qNUBw7JPvId7oNl54nf7F8j7oLnPlczlvh+NUgBYqsjaOA96UGIy7t63KvLAOXamDsAYj8Fuu+rB+dv5ftPkR0Dq1U1ZMyz6tuHVC+AWi8YiNNsvlWn4fm8EAouekHx9NB7eqXjPR1ZmRXJR+2Q6XXUM/drGc2HHjiDDmb2LMZnD2A8qwpff+P24D7wIDAQAB",
  "oauth2": {
    "client_id": "147344842003-lqngsu8881kf9asg4bq4bm6vi92refk8.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/*",
        "downloader.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}