使用扩展程序将消息发布到用户的系统任务栏 Notifications API。 首先在 manifest.json 中声明 "notifications" 权限。

{
  "name": "Drink Water Event Popup",
...
  "permissions": [
    "notifications",
  ],
...
}

声明权限后,通过调用 notifications.create()。 以下示例取自“饮水”事件弹出式窗口 示例。它会使用闹钟设置喝一杯水的提醒。此代码 显示闹钟的触发条件。点击上一个链接可了解 已设置完毕。

chrome.alarms.onAlarm.addListener(() => {
  chrome.action.setBadgeText({ text: '' });
  chrome.notifications.create({
    type: 'basic',
    iconUrl: 'stay_hydrated.png',
    title: 'Time to Hydrate',
    message: "Everyday I'm Guzzlin'!",
    buttons: [{ title: 'Keep it Flowing.' }],
    priority: 0
  });
});

此代码会在 macOS 上创建如下所示的通知。

<ph type="x-smartling-placeholder">
</ph> macOS 上的通知
macOS 上的通知。