Takealot Price Tracker

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

Takealot Price Tracker क्या है?

Takealot Price Tracker JAB-DEV द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a new tab showing the price history data of a product on takealot"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Takealot Price Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Takealot Price Tracker Takealot Price Tracker
ID gjkhncmhhlbpfifmkcbmdckndablionk
आधिकारिक URL https://chromewebstore.google.com/detail/takealot-price-tracker/gjkhncmhhlbpfifmkcbmdckndablionk
विवरण Creates a new tab showing the price history data of a product on takealot
फ़ाइल का आकार 110 KB
स्थापना संख्या 497
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2023-06-24
प्रकाशन तिथि 2022-07-17
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर JAB-DEV
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}