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开发的Chrome扩展程序,该扩展的主要功能是“Creates a new tab showing the price history data of a product on takealot”。
扩展截图
下载Takealot Price Tracker扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
} | |