我有一个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);
在这种情况下,单击上下文菜单时通知用户的最佳方法是什么?谢谢。
答案 0 :(得分:2)
webKitNotifications.createHTMLNotification
has been deprecated。新建议的通知方式目前为in draft和not many browsers have implemented it。
与此同时,我建议找另一种方式通知用户。