Notifications

notifications
Low RiskCategory: Browser UIView Official Docs

Install Warning

"Display notifications."

Technical Context

Provides access to the chrome.notifications API for displaying system notifications outside the browser window. Notifications can include text, images, buttons, and progress indicators.

What This Means For You

The extension can show popup notifications on your desktop even when Chrome is minimized. This is useful for alerts and reminders but can be annoying if overused.

Related APIs

This permission enables access to these Chrome APIs:

chrome.notifications

Common Use Cases

  • Email notifiers
  • Reminder apps
  • News alerts

How to Declare in manifest.json

Add the "notifications" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "notifications"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Display notifications."

Related Permissions