This script automatically:

  1. Clicks the “Positive” radio button.
  2. Fills out the feedback comments.
  3. 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:

eBay Feedback

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.

Search terms:

Google ReaderSurfing the web, you find many interesting websites or blogs which you want to subscribe to. But the never-ending search for the RSS link is a burden we all share. If you are using Google Reader, I may have the perfect solution for you.

Bookmark or favorite the following URL:javascript:var%20b=document.body;var%20GR________bookmarklet_domain='http://www.google.com';if(b&&!document.xmlVersion){void(z=document.createElement('script'));void(z.src='http://www.google.com/reader/ui/subscribe-bookmarklet.js');void(b.appendChild(z));}else{location='http://www.google.com/reader/view/feed/'+encodeURIComponent(location.href)}Using Google Chrome or Firefox, you can drag this link to your bookmarks bar – Subscribe.

Now, you may skip the RSS link seeking and simply click the link you have just bookmarked.

In my browser, Google Chrome, it looks like this:
Subscribe Bookmark

If you want to check it out, feel free to give it a shot and subscribe to my blog.

Search terms: