0

我正在构建一个 chrome 扩展,我目前正在尝试添加丰富的通知。我目前已在 manifest.json 文件中包含“通知”权限,并将其添加到我的 background.js 中:

var options = {
  type: "basic",
  title: "Congratulations!",
  message: "You have successfully created a notification!",
  iconUrl: "greenTick.png",
  progress: 100
};

chrome.notifications.create("", options, callback);

代码当前到达回调函数,我通过它显示一个警报只是为了确保它确实如此,但实际的通知没有出现在屏幕上。任何人都可以就为什么会发生这种情况以及我能做些什么来解决它提供任何意见吗?任何帮助将非常感激!

4

0 回答 0