在Opera v15扩展中显示通知的最佳方式

时间:2013-07-16 23:14:12

标签: opera add-on web-notifications

我有一个Chrome扩展程序,我适应了Opera。幸运的是,我的chrome扩展的所有功能在Opera 15中运行良好,没有太多变化。但是,我的扩展程序使用webkitNotifications来通知上下文菜单单击的结果。似乎web notifications在Opera扩展中不起作用。

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

在这种情况下,单击上下文菜单时通知用户的最佳方法是什么?谢谢。

1 个答案:

答案 0 :(得分:2)

webKitNotifications.createHTMLNotification has been deprecated。新建议的通知方式目前为in draftnot many browsers have implemented it

与此同时,我建议找另一种方式通知用户。