我正在尝试创建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')
}
})();