如何在任务栏中使Chrome扩展程序的窗口闪烁?

时间:2014-12-17 07:24:58

标签: javascript google-chrome google-chrome-extension window

我注意到有一些应用程序可以使任务栏中的窗口使用chrome扩展名闪烁?与下载内容时chrome将显示绿色进度条的方式类似,其他窗口将闪烁橙色以引起您的注意。无论如何都要获得chrome扩展来执行此操作吗?

1 个答案:

答案 0 :(得分:2)

是的,可以使用windows API

  

drawAttention

     

如果为true,则使窗口以引起用户注意窗口的方式显示,而不更改聚焦窗口。效果持续到用户将焦点更改为窗口。如果窗口已经具有焦点,则此选项无效。设置为false以取消先前的绘制注意请求。

// You can pass -2 as windowId for the current window,
//  or query tabs/windows to get the one you want
chrome.windows.update(windowId, {drawAttention: true});