CashCart

Compare amazon prices with aliexpress

CashCart là gì?

CashCart là một tiện ích mở rộng Chrome được phát triển bởi https://getcashcart.com, và tính năng chính của nó là "Compare amazon prices with aliexpress".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CashCart

Tải xuống các tệp mở rộng CashCart dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CashCart CashCart
ID fpicgcbefianblafcjibkhfnekolhkhh
URL Chính Thức https://chromewebstore.google.com/detail/cashcart/fpicgcbefianblafcjibkhfnekolhkhh
Mô tả Compare amazon prices with aliexpress
Kích Thước Tệp 30.93 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 0.01
Cập Nhật Lần Cuối 2023-09-03
Ngày Phát Hành 2023-09-02
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://getcashcart.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.getcashcart.com
URL Trang Chính Sách Bảo Mật https://www.getcashcart.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}