mirror of
https://codeberg.org/vlw/foodora-notify.git
synced 2025-09-13 18:33:41 +02:00
7 lines
No EOL
202 B
JavaScript
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
|
|
})); |