Walmart Chrome Extension

Walmart Chrome Extension

Downloads invoices from Walmart

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Walmart Chrome Extension",
  "short_name": "WalExt",
  "version": "2.0",
  "description": "Downloads invoices from Walmart",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "libs/moment-with-locales.js",
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "downloads",
    "pageCapture",
    "storage"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.walmart.com/*"
      ]
    }
  ]
}