提问人:akashKP 提问时间:5/22/2023 更新时间:5/22/2023 访问量:27
通知在我制作的 Chrome 扩展程序中不起作用
Notification is not working in the Chrome Extension I am making
问:
我正在学习如何创建 chrome 扩展程序。
但是我没有像我预期的那样收到通知,使用 Chrome 通知 API 的
chrome.storage.sync.set({ 'total': newTotal },function(){
if (amount && newTotal >= budget.limit){
var notifOptions = {
type : 'basic',
iconUrl : 'logo48.png',
title : 'Limit reached!',
message : 'Uh oh ! Looks like you reached your limit!'
};
chrome.notifications.create('limitNotif',notifOptions,function(id) { console.log("Last error:", chrome.runtime.lastError); }) ;
}
});
当我按下一个名为此通知的按钮时,应该会弹出。spend
在 Chrome 中启用通知权限
您可以在此处找到完整的项目和文件
答: 暂无答案
评论