Chrome扩展通知拒绝图像

Chrome Extension notifications rejects image

本文关键字:图像 拒绝 通知 扩展 Chrome      更新时间:2023-09-26

我正在开发一个扩展,需要在通知中显示图像。

我正在接收消息:

为通知类型提供的图像资源!= Image

当前代码如下:

chrome.notifications.create('', {
    type: 'basic',
    title: 'New Video: ' + video.title,
    message: 'You got a new video!!!',
    iconUrl: 'imgs/notification.jpg',
    imageUrl: video.thumbnails.notification.url
});

通知必须为'image'类型,以显示图像。

工作代码为

chrome.notifications.create('', {
    type: 'image',
    title: 'New Video: ' + video.title,
    message: 'You got a new video!!!',
    iconUrl: 'imgs/notification.jpg',
    imageUrl: video.thumbnails.notification.url
});