Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to show desktop notifications even if Chrome closed?

I'm developing a Google Chrome Extenstion, I wonder if there is anyway to show desktop notifications even if Chrome is closed, maybe some sort of background process or service? Kindly advice and guide me if it is not possible also. Thanks.

like image 566
Hesham Saeed Avatar asked Oct 11 '12 12:10

Hesham Saeed


1 Answers

If you request a "background" permission your extension's background page will be able to show notifications even with Chrome windows closed.

When any installed hosted app, packaged app, or extension has "background" permission, Chrome runs (invisibly) as soon as the user logs into their computer—before the user launches Chrome. The "background" permission also makes Chrome continue running (even after its last window is closed) until the user explicitly quits Chrome.

like image 116
Konrad Dzwinel Avatar answered Nov 15 '22 05:11

Konrad Dzwinel