我正在创建丰富的通知并为图像使用外部 iconUrl,但它失败了
var options = {
type: "basic",
title: title + ' - ' + timestamp,
message: lineItem,
iconUrl: 'http://example.com/asgsdg.png'
}
chrome.notifications.create((id++).toString(), options, function() {});
错误:notifications.create:无法下载所有指定的图像。
对于我的扩展,我在 CSP 中有以下内容:
"content_security_policy": "image-src 'self' http://example.com/*; object-src 'self'; script-src 'self'"
它适用于标准通知
window.webkitNotifications.createNotification(..., 'http://example.com/image.png',...);
我在图片图标不起作用的丰富通知中做错了什么?