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.

Wat is Amazon Order Calculator?

Amazon Order Calculator is een Chrome-extensie ontwikkeld door danveinberg, en de belangrijkste functie is "Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Amazon Order Calculator

Download Amazon Order Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Amazon Order Calculator Amazon Order Calculator
ID gkdbmcfehfafmfkgokbdgpejnnojcfci
Officiële URL https://chromewebstore.google.com/detail/amazon-order-calculator/gkdbmcfehfafmfkgokbdgpejnnojcfci
Beschrijving Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.
Bestandsgrootte 51.31 KB
Aantal Installaties 51
Huidige Versie 1.01
Laatst Bijgewerkt 2023-10-10
Publicatiedatum 2023-10-09
Ontwikkelaar danveinberg
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}