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