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
Eメール [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\/*"
            ]
        }
    ]
}