gpt4 book ai didi

google-chrome - Chrome 扩展程序背景页面未显示 Chrome 通知

转载 作者:行者123 更新时间:2023-12-04 08:15:03 31 4
gpt4 key购买 nike

使用新的 chrome.notifications API,我无法从我的扩展程序中获取通知以显示。即使是最基本的通知也无法为我显示,但我没有收到任何错误,并且回调函数已正确执行。

list .json

{
"name": "notify",
"version": "0.0.0",
"manifest_version": 2,
"permissions": [
"notifications"
],
"background": {
"scripts": ["main.js"]
}
}

main.js
window.addEventListener('load', function() {
var opt = {
type: 'list',
title: 'Primary Title',
message: 'Primary message to display',
priority: 1,
items: [{ title: 'Item1', message: 'This is item 1.'},
{ title: 'Item2', message: 'This is item 2.'},
{ title: 'Item3', message: 'This is item 3.'}]
};
chrome.notifications.create('notify1', opt, function() { console.log('created!'); });
});

当我检查背景页面时,我可以看到“已创建!”在控制台中,但我从未在桌面上收到通知。我尝试了一堆不同的优先级值都无济于事。我究竟做错了什么?

最佳答案

您可能阻止了 chrome 通知。如果您没有经常收到来自其他网站的通知的垃圾邮件,那么就是这种情况的一个很好的提示。 This answer为我工作。
enable chrome notifications

关于google-chrome - Chrome 扩展程序背景页面未显示 Chrome 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22059071/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com