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.
Co to jest Amazon Order Calculator?
Amazon Order Calculator to rozszerzenie Chrome opracowane przez danveinberg, a jego główną funkcją jest „Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Amazon Order Calculator
Pobierz pliki rozszerzeń Amazon Order Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Amazon Order Calculator |
ID | gkdbmcfehfafmfkgokbdgpejnnojcfci |
Oficjalny URL | https://chromewebstore.google.com/detail/amazon-order-calculator/gkdbmcfehfafmfkgokbdgpejnnojcfci |
Opis | Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon. |
Rozmiar pliku | 51.31 KB |
Liczba instalacji | 51 |
Aktualna Wersja | 1.01 |
Ostatnia Aktualizacja | 2023-10-10 |
Data Publikacji | 2023-10-09 |
Deweloper | danveinberg |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |