Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
i added all named changes to this file: http://phpfi.com/330812
|
|
|
>> any one added currency convertion to this? |
|
|
Hi, I made some changes to your Greasemonkey script "eBay - Display Totals with Shipping". I've uploaded the new version here: http://userscripts.org/scripts/show/23223 Hope this is okay - if you don't want the altered script to be posted, I'll take it down. (I've added support for auctions in UK pounds, and made it so it replaces the shipping column.) ben |
|
|
Yes but the add-on for firefox does not make currency convertions.
|
|
|
|
|
|
Sorry, no possibility for correcting ... createTextNode("$" + biddingTotal) ändern zu createTextNode(("EUR " + biddingTotal).replace(/\./,",")) und createTextNode("$" + buyItNowTotal) ändern zu createTextNode(("EUR " + buyItNowTotal).replace(/\./,",")) |
|
|
Für Währungen, die mit Komma "," getrennt sind:
replace(/\$/g,"") wie folgt ergänzen (4x): replace(/\$/g,"").replace(/\,/g,".") $ kann stehenbleiben, da "EUR" einen Knoten tiefer enthalten ist. Für die Ausgabe: createTextNode("$" + biddingTotal) ändern zu createTextNode(("EUR " + biddingTotal).replace(/\./,",")) und createTextNode("$" + buyItNowTotal) ändern zu createTextNode(("EUR " + biddingTotal).replace(/\./,",")) |
|
|
I've enhanced this script - it addresses some of the comments made here. |
|
|
Dear MattC, thanks for the tipp, but it doesnt work :(
Now, it only shows "EUR?" in the search-results. |
|
|
This works for other countries if you go in and edit the script.. simply replace occurrences of $ with your local currency symbol. At line 96, you can add something like this to change the font size of the total: totalTdNode.setAttribute("style", "font-size: 10px"); |
|
|
I really would like to have this; but it unfortunately fails on ebay.de (while it works on ebay.com) :( Could anyone adapt it for ebay.de ? |
|
|
Can we get an update on this script? Ebay changed their layout... |
|
|
It would be cool if it could display an average cost of all items on the page too. |
|
|
Can we PLEASE Sort by total cost?!@#!@#!@ This is the WORST problem with ebay's interface! |
|
|
Nice, using FF 2.0
|
|
|
Not sure if it's just me, but this script offsets the shipping row just a little bit, putting the total almost underneath the shipping cost. I expected it in an easier to see column, but, it does display the total, and for that it's great.
|
|
|
Five Stars!
Thanks man, this is so useful! |
