Google Home Tabs

By Blayde Last update Mar 14, 2007 — Installed 1,901 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name		Google Home Tabs
// @author		Blayde - da(dot)blayde(at)gmail(dot)com
// @description		Rounds the tabs on Google Personalized Home
// @include		http://www.google.*
// ==/UserScript==

(function(){
 //Set radius of tabs here (int)
 var radius=5;
 var tabs=document.getElementsByTagName('li');
 for(var i=0;i<tabs.length;i++){
  if(tabs[i].id.match(/tab.*_view/)){
   tabs[i].style.MozBorderRadius=radius+"px "+radius+"px 0px 0px";
 }}
})();