Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

Twitter Display Name Mod

Switches the username with the display name on Twitter.com.






1 point
login to vote
Junk Blocker scriptwright
Posted Apr 1, 2007

Extended condition to do a litte more (before AJAX refreshes add more content :( ).

      if (divs[i].className.match(/^(tab|wrapper)$/)) {
        var strong = divs[i].getElementsByTagName('strong');
        for (var j = 0; j < strong.length; j++) {
          var username = strong[j].getElementsByTagName('a')[0].innerHTML;
          if (username.match(/^[a-z0-9_]+$/i)) {
            var displayname = strong[j].getElementsByTagName('a')[0].title;
            strong[j].getElementsByTagName('a')[0].innerHTML = displayname;
            strong[j].getElementsByTagName('a')[0].title = username;
          }
        }
      }
      

1 point
login to vote
neko user
Posted Mar 1, 2007

yay! the first Twitter script!

You could comment on this script if you were logged in.