Walmart Extension

Walmart Extension

This extension extracts the UPC from source and displays it to the user, so he can easily copy it. Walmart does not show UPC on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Walmart Extension",
  "version": "0.0.1",
  "manifest_version": 3,
  "icons": {
    "128": "logo/walmart-logo128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "logo/walmart-logo128x128.png"
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://www.walmart.com/ip/*",
    "http://xpaths.qbatch.com/xpaths.json"
  ]
}