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.

什麼是Amazon Order Calculator?

Amazon Order Calculator是由danveinberg開發的Chrome擴展程式,該擴展的主要功能是“Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.”。

擴展截圖

screenshot
screenshot

下載Amazon Order Calculator擴展crx文件

下載Amazon Order Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Amazon Order Calculator Amazon Order Calculator
ID gkdbmcfehfafmfkgokbdgpejnnojcfci
官方網址 https://chromewebstore.google.com/detail/amazon-order-calculator/gkdbmcfehfafmfkgokbdgpejnnojcfci
簡介 Have you ever wondered how much you spend on Amazon.com? This chrome extension allows you to calculate how much you spent on Amazon.
檔案大小 51.31 KB
安裝次數 51
目前版本 1.01
更新時間 2023-10-10
上架時間 2023-10-09
開發者 danveinberg
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
}