Manifest with this permission
manifest.json{
"manifest_version": 3,
"name": "my-extension",
"version": "0.1.0",
"action": {
"default_popup": "src/popup.html"
},
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"permissions": [
"notifications"
]
}
This manifest installs with no permission warning.