Walmart Price Tracker by Sellegr8

Walmart Price Tracker by Sellegr8

Easily view the price history of products sold on Walmart while browsing walmart.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Walmart Price Tracker by Sellegr8",
  "description": "Easily view the price history of products sold on Walmart while browsing walmart.com.",
  "homepage_url": "https://www.sellegr8.com/",
  "version": "1.0.13",
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "action": {
    "default_title": "Walmart Price Tracker by Sellegr8",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "utils/jszip.min.js",
        "utils/defaults.js",
        "utils/common.js",
        "utils/parseCommon.js",
        "afterSearchPage.js",
        "afterProductPage.js",
        "contentScript.js"
      ],
      "matches": [
        "https://www.walmart.com/ip/*",
        "https://walmart.com/ip/*",
        "https://www.walmart.com/search?*",
        "https://www.walmart.com/browse/*",
        "https://www.walmart.com/cp/*",
        "https://www.walmart.com/shop/*",
        "https://walmart.com/search?*",
        "https://walmart.com/browse/*",
        "https://walmart.com/cp/*",
        "https://walmart.com/c/kp/*",
        "https://walmart.com/shop/*",
        "https://www.walmart.com/c/kp/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.walmart.com/ip/*",
    "https://walmart.com/ip/*",
    "https://www.walmart.com/search?*",
    "https://www.walmart.com/browse/*",
    "https://www.walmart.com/cp/*",
    "https://walmart.com/search?*",
    "https://walmart.com/browse/*",
    "https://walmart.com/cp/*",
    "https://walmart.com/c/kp/*",
    "https://www.walmart.com/c/kp/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "alarms",
    "scripting",
    "management"
  ]
}