CashCart

Compare amazon prices with aliexpress

Hvad er CashCart?

CashCart er en Chrome-udvidelse udviklet af https://getcashcart.com, og dens hovedfunktion er "Compare amazon prices with aliexpress".

Udvidelsesskærmbilleder

screenshot

Download CashCart-udvidelses-CRX-fil

Download CashCart-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn CashCart CashCart
ID fpicgcbefianblafcjibkhfnekolhkhh
Officiel URL https://chromewebstore.google.com/detail/cashcart/fpicgcbefianblafcjibkhfnekolhkhh
Beskrivelse Compare amazon prices with aliexpress
Filstørrelse 30.93 KB
Antal Installationer 30
Nuværende Version 0.01
Senest Opdateret 2023-09-03
Udgivelsesdato 2023-09-02
Bedømmelse 5.00/5 Samlet 12 Bedømmelser
Udvikler https://getcashcart.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.getcashcart.com
URL til Fortrolighedspolitik Side https://www.getcashcart.com/privacy
Understøttede Sprog 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\/*"
    ]
}