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 |
| 官方網址 | 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"
} | |