Walmart Order Scraper

Walmart Order Scraper

This extension helps to export orders from buyer account on Walmart.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "html/bana.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_popup": "html/action.html",
    "default_title": "Walmart Order Scraper | DropShipping Helper"
  },
  "icons": {
    "128": "images/logo.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-script/jquery-3.2.1.min.js",
        "content-script/import.js"
      ],
      "matches": [
        "*://*.walmart.com/account",
        "*://*.walmart.com/account/",
        "*://*.walmart.com/account/*",
        "*://*.walmart.com/account/?*",
        "*://*.walmart.com/account?*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This extension helps to export orders from buyer account on Walmart.com.",
  "manifest_version": 2,
  "name": "Walmart Order Scraper",
  "permissions": [
    "unlimitedStorage",
    "downloads",
    "storage",
    "notifications",
    "tabs",
    "cookies",
    "https://walmart.com/*",
    "https://www.walmart.com/*",
    "https://walmart.com/"
  ],
  "short_name": "DropShipping Helper",
  "author": "CEDCommerce.com",
  "version": "1.0.7"
}