通过弹出式

时间:2016-05-23 21:35:53

标签: javascript html google-chrome-extension

如何在Chrome扩展程序的html弹出框中显示通知?我可以让它出现在屏幕的右下方,但不会出现在弹出窗口内。我以前看过它,所以我确定它是可能的。有谁知道它是如何完成的?感谢。

1 个答案:

答案 0 :(得分:0)

var opt = {
    type: "basic",
    title: "Title Message",
    message: "Message for the user.",
    iconUrl: "imgs/icon.png"
}
chrome.notifications.create('name', opt, function () {
     //call back function above
});