【发布时间】:2017-06-14 05:00:47
【问题描述】:
我目前正在使用 Notification Api 开发 Chrome 扩展程序。在 Windows 和 Linux 中的 Chrome 上,它工作正常,但在 MacOs / OSX 中,通知显示时没有按钮。我试图查看Chrome Notification API 中的任何信息,但他们没有说明按钮不适用于 MacOS 用户,例如 imageURL 或 appIconMaskUrl 等其他功能。
这是我对扩展的通知声明:
type: "basic",
title: message.participant + " has arrived!",
message: message.description,
iconUrl: "icon.jpg",
buttons: [{title:'Go to Project'}]
【问题讨论】:
标签: macos google-chrome google-chrome-extension notifications