Answers for "How to create a notifiaction in chrome"

1

How to create a notifiaction in chrome

chrome.notifications.create(
  "name-for-notification",
  {
    type: "basic",
    iconUrl: "image.jpeg",
    title: "This is a notification",
    message: "hello there!",
  },
  function () {}
);
Posted by: Guest on February-09-2021

Code answers related to "How to create a notifiaction in chrome"

Browse Popular Code Answers by Language