Alec's Extension

Removes Sponsored content and 'Our Brands' from searches. Also adds a Clip/Unclip coupons button to Meijer MPerks site.

Co to jest Alec's Extension?

Alec's Extension to rozszerzenie Chrome opracowane przez alecjmaly, a jego główną funkcją jest „Removes Sponsored content and 'Our Brands' from searches. Also adds a Clip/Unclip coupons button to Meijer MPerks site.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Alec's Extension

Pobierz pliki rozszerzeń Alec's Extension 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

                        Removes sponsored content from Amazon.


Adds buttons to clip all digital coupons to both Meijer MPerks and Kroger's websites.                    

Podstawowe informacje o rozszerzeniu

Nazwa Alec's Extension Alec's Extension
ID lpkcbkbegoomehbhmnidikonfpgahked
Oficjalny URL https://chromewebstore.google.com/detail/alecs-extension/lpkcbkbegoomehbhmnidikonfpgahked
Opis Removes Sponsored content and 'Our Brands' from searches. Also adds a Clip/Unclip coupons button to Meijer MPerks site.
Rozmiar pliku 4.2 KB
Liczba instalacji 11
Aktualna Wersja 2.1.2
Ostatnia Aktualizacja 2018-09-17
Data Publikacji 2018-09-17
Deweloper alecjmaly
E-mail [email protected]
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": "Alec's Extension",
    "description": "Removes Sponsored content and 'Our Brands' from searches. Also adds a Clip\/Unclip coupons button to Meijer MPerks site.",
    "version": "2.1.2",
    "author": "Alec Maly",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.meijer.com\/mperks\/*"
            ],
            "js": [
                "Clip Meijer Coupons.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.amazon.com\/*"
            ],
            "js": [
                "amazon.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.kroger.com\/cl\/coupons\/*"
            ],
            "js": [
                "Clip Kroger Coupons.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}