Вы можете поместить файл .js в папку chrome/content
и написать такую функцию:
// take a color and color the tab with it
setColor:function(tab, tabColor)
{
tab.style.setProperty('background-image','-moz-linear-gradient(rgba(255,255,255,.7),rgba('+tabColor+',.5),rgb('+tabColor+')),-moz-linear-gradient(rgb('+tabColor+'),rgb('+ tabColor+'))','important');
}