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
官方URL 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\/*"
    ]
}