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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Takealot Price Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}