質問

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