如何更改Google Chrome扩展程序(扩展程序的创建者)中的通知图标的颜色?

时间:2013-10-11 06:32:50

标签: javascript jquery google-chrome-extension notifications icons

我在Chrome扩展程序中设置了通知,图标右下方是明亮的红色通知(1,2,3等)

看起来像这样:

我想把它作为绿色通知或者右上角的其他颜色。

我该怎么做呢?

1 个答案:

答案 0 :(得分:2)

由于这看起来不像Google Chrome notification,我假设你在谈论browser action badge

您可以使用chrome.browserAction.setBadgeBackgroundColor方法设置徽章的背景颜色。例如,对于绿色背景:

chrome.browserAction.setBadgeBackgroundColor({ color: "#00FF00"});

其中"#00FF00"是代表您颜色的hex triplet

徽章的位置无法更改,因此您无法放入右上角。