Notification permission for codelooru.com is :
View source of this page for implementation details.
Following javascript snippet is used to show the notifications on this page.
window.Notification.requestPermission().then(function(result) {
document.getElementById("permid_cdl").textContent = result;
notification = new window.Notification('This is Notification Title',
{
body: 'This is the Notification Body. Clicking this notification will open a new window.',
icon: 'https://www.blogger.com/favicon-image.g?blogID=8051593896124641807'
}
);
notification.onclick = function(event) {
window.open('http://www.codelooru.com', 'Codelooru', 'height=400,width=400');
this.close();
};
});