4-10-2010

Anonymouseit Bookmarklet

Whenever a page/site doesn't load, I try it behind a proxy to see if the problem is on my end.

I created this simple Bookmarklet that takes the url from the current window and opens a new window with the same page anonymouse'd.

Code:

javascript:function Anonymouseit(){
    var url=prompt("URL to Anonymize:", window.location);
    if(url){
        window.open("http://anonymouse.org/cgi-bin/anon-www.cgi/"+url);
    }
}
Anonymouseit();