CashCart

Compare amazon prices with aliexpress

ما هو CashCart؟

CashCart هو إضافة Chrome تم تطويرها بواسطة https://getcashcart.com، والميزة الرئيسية لها هي "Compare amazon prices with aliexpress".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة CashCart

قم بتنزيل ملفات الامتداد CashCart بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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\/*"
    ]
}