Price Tracker for Digitec|Galaxus

Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.

Co to jest Price Tracker for Digitec|Galaxus?

Price Tracker for Digitec|Galaxus to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Price Tracker for Digitec|Galaxus

Pobierz pliki rozszerzeń Price Tracker for Digitec|Galaxus 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

                        This addon adds a button to each product page of digitec or galaxus to watch the price of the product. The remembered products are shown on the main page of digitec or galaxus. The price of the products get checked everytime the users visits the main page of digitec or galaxus.
All checks are done locally in the browser while visiting digitec or galaxus.                    

Podstawowe informacje o rozszerzeniu

Nazwa Price Tracker for Digitec|Galaxus Price Tracker for Digitec|Galaxus
ID ilhhljacamnebnalecjlenfgfeigihnc
Oficjalny URL https://chromewebstore.google.com/detail/price-tracker-for-digitec/ilhhljacamnebnalecjlenfgfeigihnc
Opis Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.
Rozmiar pliku 6.59 KB
Liczba instalacji 29
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-01-13
Data Publikacji 2019-01-13
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Unknown
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": "Price Tracker for Digitec|Galaxus",
    "version": "1.0",
    "description": "Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.",
    "icons": {
        "48": "48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.digitec.ch\/*"
            ],
            "js": [
                "check.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.galaxus.ch\/*"
            ],
            "js": [
                "check.js"
            ]
        }
    ],
    "permissions": [],
    "background": {
        "scripts": []
    },
    "browser_action": {
        "default_icon": {
            "48": "48.png"
        },
        "default_title": "Price Tracker for Digitec|Galaxus"
    }
}