chrome通知列表类型通知不会显示主要消息

时间:2016-01-27 10:08:07

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

我不知道为什么type:"list"的Chrome通知中的主要消息不会显示。

根据official documents,我们发送的选项中仍然需要message来创建通知,但它不会在通知中显示消息。我在这里有我的选项对象 -

 options={
  type: "list",
  title: "Test",
  message: "This message doesn't get displayed",
  iconUrl: "icon128.png", 
  items: [{ title: "But", message: "This gets displayed."},
          { title: "And", message: "This gets displayed."},
          { title: "And This", message: "Also gets displayed."}]
};

我错过了什么吗?有解决方法吗?我没有共享清单,因为如果我将type:"list"更改为type:"basic"并将items替换为contextMessage,则通知正常。我只想显示消息列表。

0 个答案:

没有答案