如何在Chromium Embedded Framework (CEF)中启用桌面通知?
当我在 Google Chrome 中加载我的网址时,window.webkitNotifications 是非空的。当我在嵌入式 CEF 浏览器中加载我的 url 时,window.webkitNotifications 为空。
if(!window.webkitNotifications) {
alert("You need to use The Google Chrome Browser to get this feature!");
return false;
}
CEF 是否支持桌面通知?如果是这样,我该如何启用它们?