Safeway Coupon Add to Card

This extension adds all of the Safeway coupons to your card.

Safeway Coupon Add to Cardคืออะไร?

Safeway Coupon Add to Card เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rabble และคุณลักษณะหลักของมันคือ "This extension adds all of the Safeway coupons to your card."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Safeway Coupon Add to Card

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

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

                        If you find this useful, please rate and if you'd like to see this maintained, please send a donation to:
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVNCV8Y3N3X4 

Automatically add all Safeway, CARRS, and Vons coupons to your card with the click of a button! Click the red browser icon to load all of the coupons to your card.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Safeway Coupon Add to Card Safeway Coupon Add to Card
ID emjlocdhpdhochckdiiimgkknophngjj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/safeway-coupon-add-to-car/emjlocdhpdhochckdiiimgkknophngjj
คำอธิบาย This extension adds all of the Safeway coupons to your card.
ขนาดไฟล์ 40.11 KB
จำนวนการติดตั้ง 672
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2019-08-05
วันที่เผยแพร่ 2019-08-04
คะแนน 4.46/5 รวมทั้งหมด 70 คะแนน
ผู้พัฒนา rabble
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Safeway Coupon Add to Card",
    "description": "This extension adds all of the Safeway coupons to your card.",
    "version": "1.4",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.safeway.com\/*",
                "https:\/\/www.carrsqc.com\/*",
                "https:\/\/www.vons.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}