0

I want to show some message when use use the google chrome extension plugin, I am using alert to show message like this:

alert("success");

this work fine but need to click close by the user. I want to show some message like some notification and tell use success, but the user did not need do any operate. I have know the chrome notification but it need user to allow the notification. any other way to do some toast in google chrome extension v3?

Dolphin
  • 13,739
  • 26
  • 110
  • 272
  • Use `chrome.notifications` API, it doesn't need a separate permission, but the user still can disable it, of course. You can add an element in the current web page or [open a new window](https://stackoverflow.com/a/67249784), then close it after a while. – wOxxOm Feb 27 '22 at 13:59

0 Answers0