我正在开发一个Firefox插件。我想通过插件更改当前标签的颜色。怎么做??

最佳答案

您可以在.cc文件中放置一个.js文件,并编写如下函数:

// 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');

    }

09-18 15:33