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!
Vad är eBay Time Left?
eBay Time Left är en Chrome-tillägg utvecklad av Radeb, och dess huvudfunktion är "This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions!".
Tilläggsskärmbilder
Ladda ner eBay Time Left-förlängningens CRX-fil
Ladda ner eBay Time Left-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Chrome extension of a Firefox add-on developed by JonathanMccann
https://addons.mozilla.org/en-US/firefox/addon/ebay-time-left/ Grundläggande Information om Tillägg
| Namn | |
| ID | jbjjhfmffaahpkdlogabalfjfaokfmeb |
| Officiell webbadress | https://chromewebstore.google.com/detail/ebay-time-left/jbjjhfmffaahpkdlogabalfjfaokfmeb |
| Beskrivning | This Chrome addon will add the time left of a currently viewed eBay auction to the tab's title. No more forgetting active auctions! |
| Filstorlek | 3.35 KB |
| Antal Installationer | 51 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2017-11-17 |
| Publiceringsdatum | 2017-11-17 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | Radeb |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jonathanmccann/ebay-time-left |
| Stödda Språk | 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"
]
}
]
} | |