CashCart

Compare amazon prices with aliexpress

What is CashCart?

CashCart is a Chrome extension developed by https://getcashcart.com, and its main feature is "Compare amazon prices with aliexpress".

Extension Screenshots

screenshot

Download CashCart Extension CRX File

Download CashCart 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

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

Extension Basic Information

Name CashCart CashCart
ID fpicgcbefianblafcjibkhfnekolhkhh
Official URL https://chromewebstore.google.com/detail/cashcart/fpicgcbefianblafcjibkhfnekolhkhh
Description Compare amazon prices with aliexpress
File Size 30.93 KB
Installation Count 30
Current Version 0.01
Last Updated 2023-09-03
Publish Date 2023-09-02
Rating 5.00/5 Total 12 Ratings
Developer https://getcashcart.com
Email [email protected]
Payment Type free
Extension Website https://www.getcashcart.com
Privacy Policy Page URL https://www.getcashcart.com/privacy
Supported Languages 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\/*"
    ]
}