Chrome.notifications.create提供错误:“未定义创建”

时间:2019-04-27 11:26:32

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

我正在尝试创建Chrome通知侦听器扩展程序。我必须使用具有方法chrome.notifications.create()getAll()的Chrome通知API,但都给出错误create/getAll is undefined。在调试时,我得到chrome.notifications is not there。请建议我如何创建通知侦听器并从通知中获取数据。

(function() {
  if (chrome.notifications) {
    chrome.notifications.create('test');
  }
  if (!chrome.notifications) {
    console.log('not chrome')
  }
})();

0 个答案:

没有答案