Walmart Chrome Extension
Downloads invoices from Walmart
什麼是Walmart Chrome Extension?
Walmart Chrome Extension是由https://wlmrt.digitalfourplex.com開發的Chrome擴展程式,該擴展的主要功能是“Downloads invoices from Walmart”。
擴展截圖
下載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/
擴展基本資訊
名稱 | |
ID | eolgklllkhkgjmldhklmbpkkjfomklff |
官方網址 | 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\/*" ] } ] } |