Amazon Order Calculator
Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.
Vad är Amazon Order Calculator?
Amazon Order Calculator är en Chrome-tillägg utvecklad av danveinberg, och dess huvudfunktion är "Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.".
Tilläggsskärmbilder
Ladda ner Amazon Order Calculator-förlängningens CRX-fil
Ladda ner Amazon Order Calculator-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
Have you ever wondered how much you spend on Amazon? This chrome extension allows you to calculate the total amount that you have ordered from amazon.com. Log into your amazon account and go to https://www.amazon.com/cpe/yourpayments/transactions. Open the chrome extension and click add button. Click next page and then click add. Repeat these steps as many times as necessary. If you want to start over click the reset button.
Grundläggande Information om Tillägg
Namn | Amazon Order Calculator |
ID | gkdbmcfehfafmfkgokbdgpejnnojcfci |
Officiell webbadress | https://chromewebstore.google.com/detail/amazon-order-calculator/gkdbmcfehfafmfkgokbdgpejnnojcfci |
Beskrivning | Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon. |
Filstorlek | 51.31 KB |
Antal Installationer | 51 |
Aktuell Version | 1.01 |
Senast Uppdaterad | 2023-10-10 |
Publiceringsdatum | 2023-10-09 |
Utvecklare | danveinberg |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amazon Order Calculator", "description": "Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.", "version": "1.01", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Click Me", "default_popup": "popup.html", "default_icon": { "16": "logos\/logo16.png", "32": "logos\/logo32.png" } }, "icons": { "48": "logos\/logo128.png", "128": "logos\/logo128.png" }, "options_page": "options.html" } |