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
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } |