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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}