Para fazer uma notificação na área de trabalho, coloque esse código em um arquivo cuja extensão você deve colocar como .html
e, em seguida, execute-o usando o Firefox. Clicar duas vezes deve fazer o truque na maioria dos casos.
<!DOCTYPE html><html><head><script type='text/javascript'>
var RunOnDomReady = function() {
function authorizeNotification(){Notification.requestPermission(function(perm){alert(perm);});}
function showNotification() {
var notification = new Notification("This is a title", {
dir: "auto",lang: "",body: "This is a notification body",tag: "sometag",
});
}
document.querySelector("#authorize").onclick = authorizeNotification;
document.querySelector("#show").onclick = showNotification;
}
document.addEventListener("DOMContentLoaded", function(){RunOnDomReady();}, false);
</script></head><body><button id="authorize">Authorize notification</button><button id="show">Show notification</button></body></html>
Quando a página for carregada no Firefox, você precisará pressionar o botão Authorize notification
e, em seguida, pressionar o botão Show notification
.