This script automatically:
- Clicks the “Positive” radio button.
- Fills out the feedback comments.
- Rates everything with five stars.
You can use this bookmark whenever you are on a feedback page on eBay.
To use it, first drag the following link to your bookmarks bar or add it to your favorites:
And then click it when browsing eBay’s feedback page.
It is most useful if you have lots of eBay transactions to rate at once. Then you can go here:
http://feedback.ebay.com/ws/eBayISAPI.dll?LeaveFeedback2
And use the script to fill all your feedback pending transactions at once.
Here’s the bookmark’s code for the developers among us:
var feedback = prompt( 'Please enter your feedback message', 'Thanks, great seller. I got the item quickly.' );
var el = document.querySelectorAll( '.radiorow input[value="positive"]' );
for (var i = 0; i < el.length; i++) {
el[ i ].click();
}
var el = document.querySelectorAll( 'input[type="text"]' );
for (var i = 0; i < el.length; i++) {
if ( el[ i ].name.substr( 0, 7 ) == 'comment' ) {
el[ i ].value = feedback;
}
}
I developed it for my personal use, but decided to share it here in case anyone else was interested in such a script.
Simple and useful.