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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top