Amazon Invoice Downloader
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
Vad är Amazon Invoice Downloader?
Amazon Invoice Downloader är en Chrome-tillägg utvecklad av https://extensionsworld.com, och dess huvudfunktion är "Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.".
Tilläggsskärmbilder
Ladda ner Amazon Invoice Downloader-förlängningens CRX-fil
Ladda ner Amazon Invoice Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
Grundläggande Information om Tillägg
Namn | Amazon Invoice Downloader |
ID | jibfakcjhhekoolfogeejilflpcnbnel |
Officiell webbadress | https://chromewebstore.google.com/detail/amazon-invoice-downloader/jibfakcjhhekoolfogeejilflpcnbnel |
Beskrivning | Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. |
Filstorlek | 85.69 KB |
Antal Installationer | 996 |
Aktuell Version | 2.4 |
Senast Uppdaterad | 2023-03-03 |
Publiceringsdatum | 2020-06-23 |
Betyg | 4.20/5 Totalt 5 Betyg |
Utvecklare | https://extensionsworld.com |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://extensionsworld.com/legal |
Stödda Språk | 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" } } |