conlacda / atcoder-companion

Atcoder Companion
https://chromewebstore.google.com/detail/atcoder-companion/bflhekmjlbpdlibcmojpikplaldgceec
MIT License
1 stars 0 forks source link

Show notification 30 minutes before contest #3

Open conlacda opened 3 months ago

conlacda commented 3 months ago
conlacda commented 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.',
    });
});