Use onInstalled event
This commit is contained in:
parent
dfeb7e7549
commit
f961c205a7
5 changed files with 27 additions and 26 deletions
|
@ -1,23 +0,0 @@
|
|||
const NOTIFICATION_ID = 'vimvixen-update';
|
||||
|
||||
export default class Notifier {
|
||||
notify(title, message, onclick) {
|
||||
const listener = (id) => {
|
||||
if (id !== NOTIFICATION_ID) {
|
||||
return;
|
||||
}
|
||||
|
||||
onclick();
|
||||
|
||||
browser.notifications.onClicked.removeListener(listener);
|
||||
};
|
||||
browser.notifications.onClicked.addListener(listener);
|
||||
|
||||
return browser.notifications.create(NOTIFICATION_ID, {
|
||||
'type': 'basic',
|
||||
'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),
|
||||
title,
|
||||
message,
|
||||
});
|
||||
}
|
||||
}
|
Reference in a new issue