gpt4 book ai didi

javascript - 打包应用中的 Chrome 通知。 "chrome.notifications.create"

转载 作者:行者123 更新时间:2023-11-30 07:38:51 31 4
gpt4 key购买 nike

这是我的代码。我不确定这是否应该起作用。

$('#save').bind('click', function(e){

var opt = {
type: "basic",
title: "Deploy",
message: "It worked!"
};
chrome.notifications.create("", opt, function(id) {});
});

我设置了使用通知的权限,所以我认为这不是问题所在。

最佳答案

请注意 the documentationiconUrl 列为 chrome.notifications.createopt必需选项

假设您将图片 icon.png 添加到扩展的根目录。然后你的代码可以这样修改:

var opt = {
type: "basic",
title: "Deploy",
message: "It worked!",
iconUrl: "icon.png"
};
chrome.notifications.create("", opt, function(id) {
if(chrome.runtime.lastError) {
console.error(chrome.runtime.lastError.message);
}
});

这应该有效,如果通知有任何问题,您会在控制台中收到通知。

关于javascript - 打包应用中的 Chrome 通知。 "chrome.notifications.create",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22870297/

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