notifications.TemplateType
Dies ist eine Zeichenkette und repräsentiert den Typ der Benachrichtigung, die erstellt werden soll. Es gibt vier Typen von Benachrichtigungen: "basic", "image", "list", "progress".
Dies wird in notifications.create()
und notifications.update()
als type
-Eigenschaft von NotificationOptions
übergeben.
Typ
Werte dieses Typs sind Zeichenketten. Mögliche Werte sind:
-
"basic"
: Die Benachrichtigung umfasst:- einen Titel (
NotificationOptions.title
) - eine Nachricht (
NotificationOptions.message
) - ein Symbol (
NotificationOptions.iconUrl
) Optional - eine zusätzliche Nachricht (
NotificationOptions.contextMessage
) Optional - bis zu zwei Schaltflächen (
NotificationOptions.buttons
) Optional
- einen Titel (
-
"image"
: alles in"basic"
und außerdem:- ein Bild (
NotificationOptions.imageUrl
)
- ein Bild (
-
"list"
: alles in"basic"
und außerdem:- eine Liste von Elementen (
NotificationOptions.items
)
- eine Liste von Elementen (
-
"progress"
: alles in"basic"
und außerdem:- einen Fortschrittsindikator (
NotificationOptions.progress
)
- einen Fortschrittsindikator (
Aktuell unterstützt Firefox nur "basic" hier.
Browser-Kompatibilität
BCD tables only load in the browser
Hinweis: Diese API basiert auf Chromiums chrome.notifications
API.