リッチ通知を作成し、画像に外部 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',...);
画像アイコンが機能しないリッチ通知で間違っているのは何ですか?