Notificação

Arquivo: index.html
<!doctype html>
<html lang="pt-br">
 <head>
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Notifica&ccedil;&otilde;es</title>
</head>
<script language="javascript">
function xNotification(icone, site, titulo, corpo) {
  var opcoes = {
    body: corpo,
    icon: icone
  };
  var n = new Notification(titulo, opcoes);
  n.onclick = function() {
    window.open(site);
  }
}
</script>
<body>
    <button onClick="xNotification('icone.png', 'https://meusite.com/','Titulo','Texto da Notificacao')">Notifique me</button>
</body>
</html>