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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
}