chrome.notifications消息未显示

时间:2014-06-11 23:28:22

标签: javascript google-chrome google-chrome-extension notifications

根据Chrome extension documentationmessage中的NotificationOptions定义了要在创建的通知中显示的主要通知内容。不过,请看一下这个片段:

chrome.notifications.create("some id", {
    type: "list",
    title: "Title",
    message: "Message",
    iconUrl: "icon.png",
    items: [{
        title: "Title",
        message: "Message"
    }]
}, function () {});

这会产生这样的通知:

  

enter image description here

请注意主要消息缺失。但是,可以使用contextMessage在标题下显示文字,但这会使文字变灰。

我怀疑这是一个错误,因为通知API要求提供message属性,并且在不使用属性的情况下要求属性没有意义。

我在这里做错了什么,或者它只是一个错误?或者也许是有目的的?

1 个答案:

答案 0 :(得分:3)

感谢您的举报!我创建了https://code.google.com/p/chromium/issues/detail?id=384025来跟踪修复这种不一致的情况。