views:

411

answers:

2

How can I add a simple toolbar button to IE that gets the current url and redirect to another url?

+2  A: 

If you don't want to get deep into all the IE extension stuff, you could go with a bookmarklet and just use javascript to get the same behaviour you are looking for:

javascript:if(location.href="http://www.google.com"){ location.href="http://www.yahoo.com"}

This also has the advantage working on many different browsers.

Bookmarklet Info

Millhouse