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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Radeb และคุณลักษณะหลักของมันคือ "This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย eBay Time Left
ดาวน์โหลดไฟล์ส่วนขยาย eBay Time Left ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chrome extension of a Firefox add-on developed by JonathanMccann https://addons.mozilla.org/en-US/firefox/addon/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" ] } ] } |