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