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!
What is eBay Time Left?
eBay Time Left is a Chrome extension developed by Radeb, and its main feature is "This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!".
Extension Screenshots
Download eBay Time Left Extension CRX File
Download eBay Time Left extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Chrome extension of a Firefox add-on developed by JonathanMccann https://addons.mozilla.org/en-US/firefox/addon/ebay-time-left/
Extension Basic Information
Name | eBay Time Left |
ID | jbjjhfmffaahpkdlogabalfjfaokfmeb |
Official URL | https://chromewebstore.google.com/detail/ebay-time-left/jbjjhfmffaahpkdlogabalfjfaokfmeb |
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! |
File Size | 3.35 KB |
Installation Count | 51 |
Current Version | 1.1 |
Last Updated | 2017-11-17 |
Publish Date | 2017-11-17 |
Rating | 4.67/5 Total 3 Ratings |
Developer | Radeb |
Payment Type | free |
Extension Website | https://github.com/jonathanmccann/ebay-time-left |
Supported Languages | 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" ] } ] } |