CashCart

Compare amazon prices with aliexpress

什麼是CashCart?

CashCart是由https://getcashcart.com開發的Chrome擴展程式,該擴展的主要功能是“Compare amazon prices with aliexpress”。

擴展截圖

screenshot

下載CashCart擴展crx文件

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

擴展使用說明

                        Cashcart looks for similar and cheaper items on Aliexpress when you are shopping on Amazon                    

擴展基本資訊

名稱 CashCart CashCart
ID fpicgcbefianblafcjibkhfnekolhkhh
官方網址 https://chromewebstore.google.com/detail/cashcart/fpicgcbefianblafcjibkhfnekolhkhh
簡介 Compare amazon prices with aliexpress
檔案大小 30.93 KB
安裝次數 30
目前版本 0.01
更新時間 2023-09-03
上架時間 2023-09-02
評分 5.00/5 共 12 次評分
開發者 https://getcashcart.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.getcashcart.com
隱私政策頁面URL https://www.getcashcart.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CashCart",
    "description": "Compare amazon prices with aliexpress",
    "version": "0.01",
    "icons": {
        "16": "images\/smile16x16.png",
        "32": "images\/smile32x32.png",
        "48": "images\/smile48x48.png",
        "128": "images\/smile128x128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "util.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "identity",
        "identity.email",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/localhost:3000\/*",
        "https:\/\/*.amazon.com\/*"
    ]
}