Searchstatus is an FF extension for viewing alexa ranking, google pagerank, and website backlinks. Even though the author's site says it doesn't, this extension does affect alexa ranking. I can say this because if you install the plugin, work heavily on a new site (with not much alexa traffic) for a few days, then view the alexa ranking, you will notice a large surge in ranking from your country of residence. Example here.
So, how does searchstatus transmit the info that affects rankings? After opening up the extension, you'll find a number of javascript files at the core. The main one is named searchstatus.js - and this is the file where things happen.
I've attached the file below, and also outlined the code I think *may* transmit the info (although it is a guess). Does anyone who is better versed in javascript want to have a look at the file to see where it might happen? If we pin it down, we should theoretically be able to use it on our own sites, to get proper data via alexa.
At least, that's my own thinking. Could be wrong!

Code:
var encodedUrl = ssUrlEncode( url );
var querystring = this.isAnonymize() ? "http://www.anonymization.org/-" : "http://";
querystring += "xml.alexa.com/data?cli=10&dat=nsa&ver=quirk-searchstatus&uid=" + this.mInstallDate + "&userip=" + this.mLocalIP + "&url=" + encodedUrl;
if( querystring != this.mAlexaQuerystring ) {
debugss( "asking alexa..." );
this.mAlexaRequest = new XMLHttpRequest();
this.mAlexaRequest.onload = onAlexaRequestLoad;
this.mAlexaRequest.open( "GET", querystring );
this.mAlexaRequest.send( null );
this.mAlexaQuerystring = querystring;
}







Linear Mode




