Memposting pesan ke area notifikasi pengguna menggunakan ekstensi API Notifikasi. Mulailah dengan mendeklarasikan izin "notifications" dalam manifest.json.

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

Setelah izin dideklarasikan, tampilkan notifikasi dengan memanggil notifications.create() Contoh berikut diambil dari pop-up peristiwa minum air contoh. Menggunakan alarm untuk menyetel pengingat untuk minum segelas air. Kode ini menunjukkan pemicuan alarm. Ikuti link sebelumnya untuk mempelajari bagaimana hal ini sudah diatur.

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
  });
});

Kode ini akan membuat notifikasi di macOS seperti berikut.

Notifikasi di macOS
Notifikasi di macOS.