Takealot Price Tracker
Creates a new tab showing the price history data of a product on takealot
Что такое Takealot Price Tracker?
Takealot Price Tracker - это расширение Chrome, разработанное JAB-DEV, и его основная функция - "Creates a new tab showing the price history data of a product on takealot".
Снимки экрана расширения
Скачать файл CRX расширения Takealot Price Tracker
Скачайте файлы расширений Takealot Price Tracker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" } |