Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Walmart Invoice Exporter",
"version": "5.2",
"description": "Download Walmart order details in xlsx format",
"minimum_chrome_version": "116",
"permissions": [
"activeTab",
"storage",
"sidePanel"
],
"host_permissions": [
"https:\/\/www.walmart.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png",
"256": "images\/icon256.png",
"512": "images\/icon512.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.walmart.com\/orders*"
],
"js": [
"utils.js",
"content.js",
"exceljs.bare.min.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"default_locale": "en"
}