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.

Cos'è Price Tracker for Digitec|Galaxus?

Price Tracker for Digitec|Galaxus è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Price Tracker for Digitec|Galaxus

Scarica i file di estensione Price Tracker for Digitec|Galaxus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Price Tracker for Digitec|Galaxus Price Tracker for Digitec|Galaxus
ID ilhhljacamnebnalecjlenfgfeigihnc
URL Ufficiale https://chromewebstore.google.com/detail/price-tracker-for-digitec/ilhhljacamnebnalecjlenfgfeigihnc
Descrizione Adds functionality to Digitec|Galaxus to rememeber a product and check it's prise changes each time you visit the main page.
Dimensione del File 6.59 KB
Conteggio Installazioni 29
Versione Corrente 1.0
Ultimo Aggiornamento 2019-01-13
Data di Pubblicazione 2019-01-13
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    }
}