Ardit Could you visit the website where notification should appear, then click on the top right menu and select More tools < Developer tools. Click under 'Console' header and paste the following:
if (Notification.permission === "granted") {
new Notification("Hello!", {
body: "This is a Chrome notification from console.",
});
} else if (Notification.permission !== "denied") {
Notification.requestPermission().then(permission => {
if (permission === "granted") {
new Notification("Permission granted!", {
body: "Notification test message.",
});
} else {
console.log("User denied notification.");
}
});
}
Press 'Enter' after pasting and see if there's any popup. If there's a popup, kindly screenshot and send it to us.