User:Userscripts/Editcount link/dev.js

From Wikipedia, the free encyclopedia

Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.

function CountLinkClassicSkin()
{
                //      This is tricky, as there are so few tag-IDs to assist us.
                //      The link will be placed right after the "User (Talk)" links at top.
 
        var td = document.getElementById( 'topbar' ).getElementsByTagName( 'td' )[ 2 ];
        var user = td.getElementsByTagName( 'a' )[ 0 ];
        var name = user.firstChild.nodeValue;
        var loc = td.getElementsByTagName( 'br' )[ 0 ]; // insert before this
 
        var count = document.createElement( 'a' );
                count.appendChild( document.createTextNode( '(Count)' ) );
                count.href = 'http://tools.wikimedia.de/~interiot/cgi-bin/count_edits?user=' + name + '&dbname=enwiki_p'
 
        td.insertBefore( document.createTextNode( ' ' ), loc );
        td.insertBefore( count, loc );
}
if ( window.addEventListener ) window.addEventListener( 'load', CountLinkClassicSkin, false );
else if ( window.attachEvent ) window.attachEvent( 'onload', CountLinkClassicSkin );