Amazon Invoice Downloader
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
Τι είναι το Amazon Invoice Downloader;
Το Amazon Invoice Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://extensionsworld.com, και η κύρια λειτουργία του είναι "Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Amazon Invoice Downloader
Λήψη αρχείων επέκτασης Amazon Invoice Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Amazon Invoice Downloader |
ID | jibfakcjhhekoolfogeejilflpcnbnel |
Επίσημο URL | https://chromewebstore.google.com/detail/amazon-invoice-downloader/jibfakcjhhekoolfogeejilflpcnbnel |
Περιγραφή | Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. |
Μέγεθος Αρχείου | 85.69 KB |
Αριθμός Εγκαταστάσεων | 996 |
Τρέχουσα Έκδοση | 2.4 |
Τελευταία Ενημέρωση | 2023-03-03 |
Ημερομηνία Δημοσίευσης | 2020-06-23 |
Αξιολόγηση | 4.20/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | https://extensionsworld.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://extensionsworld.com/legal |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Invoice Downloader", "permissions": [ "https:\/\/*.extensionsworld.com\/*", "storage" ], "version": "2.4", "background": { "scripts": [ "js\/utils.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*" ], "js": [ "js\/utils.js", "js\/privateUtils.js", "js\/index.js" ] } ], "icons": { "128": "icon128.png", "64": "icon64.png" }, "browser_action": { "default_icon": { "128": "icon128.png", "64": "icon64.png" }, "default_title": "Amazon Invoice Downloader", "default_popup": "html\/index.html" } } |