gpt4 book ai didi

google-chrome - 正常网页中的 Chrome 富通知?

转载 作者:行者123 更新时间:2023-12-04 02:48:08 26 4
gpt4 key购买 nike

我找到了 documentation用于 Chrome 应用丰富的通知。
是否可以(在获得正确权限后)在常规网页中使用这些通知?
如果不是,是否有任何其他类型的桌面通知可以在 Chrome 中使用?
也许像 gmail 这样的东西已经做了很长时间了?

最佳答案

所以你需要这样的东西?

Try it!

<script>
function notify() {
var havePermission = window.webkitNotifications.checkPermission();
if (havePermission == 0) {
// 0 is PERMISSION_ALLOWED
var notification = window.webkitNotifications.createNotification(
'http://test.didacticmedia.ro/img/didactic.png',
'Notification test!',
'details text'
);

notification.onclick = function () {
window.open("http://stackoverflow.com/questions/18414462/chrome-rich-notifications-in-normal-web-pages/19031405#19031405");
notification.close();
}
notification.show();
} else {
window.webkitNotifications.requestPermission();
}
}
</script>

<div style="width: 100px; height: 100px; background: red" onclick="notify()">
Click here!
</div>

关于google-chrome - 正常网页中的 Chrome 富通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18414462/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com