mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
10 lines
196 B
JSON
10 lines
196 B
JSON
{
|
|
"name": "Service worker with push notification",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"permissions": ["notifications"]
|
|
}
|