Walmart Chrome Extension
Downloads invoices from Walmart
Τι είναι το Walmart Chrome Extension;
Το Walmart Chrome Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://wlmrt.digitalfourplex.com, και η κύρια λειτουργία του είναι "Downloads invoices from Walmart".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Walmart Chrome Extension
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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\/*" ] } ] } |