Takealot Price Tracker

Creates a new tab showing the price history data of a product on takealot

Cos'è Takealot Price Tracker?

Takealot Price Tracker è un'estensione di Chrome sviluppata da JAB-DEV, e la sua funzione principale è "Creates a new tab showing the price history data of a product on takealot".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Takealot Price Tracker

Scarica i file di estensione Takealot Price Tracker 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

                        Big (BLUE!) button that exposes the Big lies of fake discounts on takealot

Discover the true pricing history of a product using serval price tracker

Changes in 1.1:
 Added Options menu to pick between:
  BLUE BUTTON- A more modern looking button in line with takealots style
  Classic yellow button- Older bigger yellow button more in line with servals style
 




If you want to contribute or just add more button themes tell me at 
Source: https://github.com/JAB-dev/ServalPriceExt


Not affiliated with Takealot or ServalPriceTracker                    

Informazioni di Base sull'Estensione

Nome Takealot Price Tracker Takealot Price Tracker
ID gjkhncmhhlbpfifmkcbmdckndablionk
URL Ufficiale https://chromewebstore.google.com/detail/takealot-price-tracker/gjkhncmhhlbpfifmkcbmdckndablionk
Descrizione Creates a new tab showing the price history data of a product on takealot
Dimensione del File 110 KB
Conteggio Installazioni 497
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-06-24
Data di Pubblicazione 2022-07-17
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore JAB-DEV
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Takealot Price Tracker",
    "version": "1.1.0",
    "description": "Creates a new tab showing the price history data of a product on takealot",
    "manifest_version": 3,
    "author": "JAB",
    "action": {
        "default_popup": "options.html",
        "default_title": "Returns serval price tracking for current link",
        "default_icon": "128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styling.css"
            ],
            "matches": [
                "https:\/\/www.takealot.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.takealot.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "styling.css"
            ]
        }
    ],
    "options_page": "options.html"
}