CashCart

Compare amazon prices with aliexpress

CashCartคืออะไร?

CashCart เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://getcashcart.com และคุณลักษณะหลักของมันคือ "Compare amazon prices with aliexpress"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CashCart

ดาวน์โหลดไฟล์ส่วนขยาย CashCart ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้านโยบายความเป็นส่วนตัว 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\/*"
    ]
}