TDNAM pagerank Checker
Filed Under (domain) by admin on 11-08-2009
Tagged Under : TDNAM pagerank Checker
usefull script to check pagerank domain at TDNAM
first you need to install add on into your firefox.
1. install GreaseMonkey add on https://addons.mozilla.org/firefox/addon/748
2. enable GreaseMonkey and restart your firefox
3. right click monkey pic on bottom right your firefox and then add this script
// ==UserScript==
// @name TDNAM PageRank Checker
// @author Craze3
// @email craze3@gmail.com
// @namespace http://www.scaredy.com
// @description Adds a pagerank/backlink display next to every domain listed on tdnam.com.
// @include http://tdnam.com/*
// @include http://*.tdnam.com/*
//
// @include https://tdnam.com/*
// @include https://*.tdnam.com/*
// ==/UserScript==
//URL API Used to create the pagerank check image (for reference):
//http://www.top-google-pagerank.com/pagerank.php?action=image&url=http://www.URL-HERE.com
//..and the one for backlinks:
//http://www.express-submit.de/backlink-neu/backlink.cgi?http://www.URL-HERE.com
//Trim function, removes whitespace
function trim(s){
if((s==null)||(typeof(s)!=’string’)||!s.length)return”;return s.replace(/^\s+/,”).replace(/\s+$/,”)}
//Loop through all domains listed and add pagerank image
var result = document.evaluate( “//td[@class='sItem']/a[@style] | //td[@class='sItemA']/a[@style]“, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null );
if(result.snapshotLength < 1) return;
for ( var i = 0; i < result.snapshotLength; i++ )
{
thisElement = result.snapshotItem(i);
thisText = trim(thisElement.title);
if(!thisText) thisText = trim(thisElement.text);
thisText = thisText.replace(”View details for “, “”);
newElement = document.createElement(’div’);
newElement.innerHTML = ‘<img src=”http://www.linktrend.com/pr?uri=http://’ + thisText + ‘” />’;
thisElement.parentNode.insertBefore(newElement, thisElement.nextSibling);
}
once installed just edit this section (picture below)
now you are ready to use simple pagerank checker at tdnam domain sell



