Walmart Chrome Extension

Downloads invoices from Walmart

什么是Walmart Chrome Extension?

Walmart Chrome Extension是由https://wlmrt.digitalfourplex.com开发的Chrome扩展程序,该扩展的主要功能是“Downloads invoices from Walmart”。

扩展截图

screenshot
screenshot
screenshot

下载Walmart Chrome Extension扩展crx文件

下载Walmart Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Walmart Chrome Extension Walmart Chrome Extension
ID eolgklllkhkgjmldhklmbpkkjfomklff
官方URL https://chrome.google.com/webstore/detail/walmart-chrome-extension/eolgklllkhkgjmldhklmbpkkjfomklff
简介 Downloads invoices from Walmart
文件大小 390 KB
安装次数 398
当前版本 2.0
更新时间 2021-10-31
上架时间 2020-02-02
评分 1.00/5 共1次评分
开发者 https://wlmrt.digitalfourplex.com
电子邮箱 [email protected]
付费类型 in_app
扩展官网 https://wlmrt.digitalfourplex.com/
帮助页面URL https://wlmrt.digitalfourplex.com/
隐私政策页面URL https://wlmrt.digitalfourplex.com/privacy-policy
支持的语言 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\/*"
            ]
        }
    ]
}