Question

I have a chrome extension that I adapted to the Opera. Fortunately, all the features of my chrome extension worked well in Opera 15 without many changes. However, my extension uses the webkitNotifications to notify the result of the context menu click. It seems that the web notifications doesn't work in Opera extensions.

var notification = webkitNotifications.createNotification('icon_32.png','My extension title','Notification text');
notification.show();
setTimeout(function(){notification.cancel();}, 5000);

In this case, what is the best way to notify the user when the context menu is clicked? Thanks.

Was it helpful?

Solution

webKitNotifications.createHTMLNotification has been deprecated. New suggested way to create notifications is in draft currently and not many browsers have implemented it.

In the meantime, I'd like to suggest to find another way to notify the user.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top