Open conlacda opened 3 months ago
Sample code:
chrome.runtime.onInstalled.addListener(() => {
chrome.notifications.create({
type: 'basic',
iconUrl: '/icons/icon-128.png',
title: 'Notification Title',
message: 'This is a message for the notification.',
});
});