我注意到有些应用程序可以使用Chrome扩展程序使任务栏中的窗口闪烁?类似于chrome在下载内容时会显示绿色的进度条,其他窗口也会闪烁橙色以引起您的注意。反正有镀 Chrome 扩展做到这一点吗?
最佳答案
是的,可以使用 windows
API:
// 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});