foodora-notify/chrome/assets/js/background.js
2023-02-05 14:45:05 +01:00

7 lines
No EOL
202 B
JavaScript

// Dispatch notification
chrome.runtime.onMessage.addListener(event => chrome.notifications.create(null, {
type: "basic",
title: event.title,
message: event.msg,
iconUrl: event.icon
}));