Walmart Chrome Extension

Downloads invoices from Walmart

What is Walmart Chrome Extension?

Walmart Chrome Extension is a Chrome extension developed by https://wlmrt.digitalfourplex.com, and its main feature is "Downloads invoices from Walmart".

Extension Screenshots

screenshot
screenshot
screenshot

Download Walmart Chrome Extension Extension CRX File

Download Walmart Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Downloads invoices from Walmart in one click. 

This app is useful for wholesalers, who make hundreds of purchases on walmart.com every month, and who need to download invoices for accounting purposes. Doing it manually is a tedious and time consuming process, while this extension will allow to download all invoices for the whole month in just one click.

This extensions:
- downloads all invoices for any month
- generates csv with all orders that were downloaded, with shipping status, fees and prices

Find installation and configuration manual here. 
https://wlmrt.digitalfourplex.com/

For pricing options, please visit
https://wlmrt.digitalfourplex.com/                    

Extension Basic Information

Name Walmart Chrome Extension Walmart Chrome Extension
ID eolgklllkhkgjmldhklmbpkkjfomklff
Official URL https://chrome.google.com/webstore/detail/walmart-chrome-extension/eolgklllkhkgjmldhklmbpkkjfomklff
Description Downloads invoices from Walmart
File Size 390 KB
Installation Count 398
Current Version 2.0
Last Updated 2021-10-31
Publish Date 2020-02-02
Rating 1.00/5 Total 1 Ratings
Developer https://wlmrt.digitalfourplex.com
Email [email protected]
Payment Type in_app
Extension Website https://wlmrt.digitalfourplex.com/
Help Page URL https://wlmrt.digitalfourplex.com/
Privacy Policy Page URL https://wlmrt.digitalfourplex.com/privacy-policy
Supported Languages en-US
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\/*"
            ]
        }
    ]
}