Safeway Coupon Add to Card

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

Co to jest Safeway Coupon Add to Card?

Safeway Coupon Add to Card to rozszerzenie Chrome opracowane przez rabble, a jego główną funkcją jest „This extension adds all of the Safeway coupons to your card.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Safeway Coupon Add to Card

Pobierz pliki rozszerzeń Safeway Coupon Add to Card w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Safeway Coupon Add to Card Safeway Coupon Add to Card
ID emjlocdhpdhochckdiiimgkknophngjj
Oficjalny URL https://chromewebstore.google.com/detail/safeway-coupon-add-to-car/emjlocdhpdhochckdiiimgkknophngjj
Opis This extension adds all of the Safeway coupons to your card.
Rozmiar pliku 40.11 KB
Liczba instalacji 672
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2019-08-05
Data Publikacji 2019-08-04
Ocena 4.46/5 Łącznie 70 Oceny
Deweloper rabble
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}