Walmart Historical Pricing

Walmart Historical Pricing

Embedding product price history on the walmart.com page itself to help sellers evaluate products based on historical data and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Walmart Historical Pricing",
  "version": "1.1",
  "description": "",
  "manifest_version": 3,
  "incognito": "split",
  "icons": {
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.walmart.com/ip/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/highCharts.js",
        "highChartScripts/series-label.js",
        "highChartScripts/exporting.js",
        "highChartScripts/export-data.js",
        "highChartScripts/accessability.js",
        "scripts/addChart.js"
      ],
      "css": [
        "styles/chart.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/128.png"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://www.walmart.com/ip*"
  ]
}