mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Remove notification permission from push cookbook sample As of [M132] this requirement is no longer necessary (unless the extension chooses to show a notification). [M132]: https://chromiumdash.appspot.com/commit/ed68ac786e9a276ef2b627b7e21cf0d20cc6d798 * address review comments * Add note about minimum Chrome version --------- Co-authored-by: Oliver Dunk <oliverdunk@google.com>
9 lines
162 B
JSON
9 lines
162 B
JSON
{
|
|
"name": "Service worker with silent push message",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
}
|