CashCart

Compare amazon prices with aliexpress

Wat is CashCart?

CashCart is een Chrome-extensie ontwikkeld door https://getcashcart.com, en de belangrijkste functie is "Compare amazon prices with aliexpress".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CashCart

Download CashCart-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam CashCart CashCart
ID fpicgcbefianblafcjibkhfnekolhkhh
Officiële URL https://chromewebstore.google.com/detail/cashcart/fpicgcbefianblafcjibkhfnekolhkhh
Beschrijving Compare amazon prices with aliexpress
Bestandsgrootte 30.93 KB
Aantal Installaties 30
Huidige Versie 0.01
Laatst Bijgewerkt 2023-09-03
Publicatiedatum 2023-09-02
Beoordeling 5.00/5 Totaal 12 Beoordelingen
Ontwikkelaar https://getcashcart.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.getcashcart.com
URL van de Privacybeleid Pagina https://www.getcashcart.com/privacy
Ondersteunde Talen 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\/*"
    ]
}