eBay Time Left

This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!

eBay Time Left란 무엇입니까?

eBay Time Left은(는) Radeb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!"입니다.

확장 프로그램 스크린샷

screenshot

eBay Time Left 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension of a Firefox add-on developed by JonathanMccann

https://addons.mozilla.org/en-US/firefox/addon/ebay-time-left/                    

확장 프로그램 기본 정보

이름 eBay Time Left eBay Time Left
ID jbjjhfmffaahpkdlogabalfjfaokfmeb
공식 URL https://chromewebstore.google.com/detail/ebay-time-left/jbjjhfmffaahpkdlogabalfjfaokfmeb
설명 This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!
파일 크기 3.35 KB
설치 횟수 51
현재 버전 1.1
최근 업데이트 2017-11-17
출시 날짜 2017-11-17
평점 4.67/5 총 3 개의 평점
개발자 Radeb
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jonathanmccann/ebay-time-left
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eBay Time Left",
    "version": "1.1",
    "author": "Jonathan McCann",
    "homepage_url": "https:\/\/github.com\/jonathanmccann\/ebay-time-left",
    "description": "This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ebay.com\/*",
                "*:\/\/*.ebay.ca\/*",
                "*:\/\/*.ebay.co.uk\/*",
                "*:\/\/*.ebay.at\/*",
                "*:\/\/*.ebay.com.au\/*",
                "*:\/\/*.ebay.be\/*",
                "*:\/\/*.ebay.ch\/*",
                "*:\/\/*.ebay.de\/*",
                "*:\/\/*.ebay.es\/*",
                "*:\/\/*.ebay.fr\/*",
                "*:\/\/*.ebay.ie\/*",
                "*:\/\/*.ebay.it\/*",
                "*:\/\/*.ebay.nl\/*"
            ],
            "js": [
                "timeLeft.js"
            ]
        }
    ]
}