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은(는) rabble에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds all of the Safeway coupons to your card."입니다.

확장 프로그램 스크린샷

screenshot

Safeway Coupon Add to Card 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}