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.

What is Amazon Order Calculator?

Amazon Order Calculator is a Chrome extension developed by danveinberg, and its main feature 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.".

Extension Screenshots

screenshot
screenshot

Download Amazon Order Calculator Extension CRX File

Download Amazon Order Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Amazon Order Calculator Amazon Order Calculator
ID gkdbmcfehfafmfkgokbdgpejnnojcfci
Official URL https://chromewebstore.google.com/detail/amazon-order-calculator/gkdbmcfehfafmfkgokbdgpejnnojcfci
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.
File Size 51.31 KB
Installation Count 51
Current Version 1.01
Last Updated 2023-10-10
Publish Date 2023-10-09
Developer danveinberg
Email [email protected]
Payment Type free
Supported Languages 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"
}