The WorkerNavigator.permissions
read-only property returns a Permissions
object that can be used to query and update permission status of APIs covered by the Permissions API.
The WorkerNavigator.permissions
read-only property returns a Permissions
object that can be used to query and update permission status of APIs covered by the Permissions API.
A Permissions
object.
js
navigator.permissions.query({ name: "notifications" }).then((result) => { if (result.state === "granted") { showNotification(); } else if (result.state === "prompt") { requestNotificationPermission(); } });
Specification |
---|
Permissions # dom-workernavigator-permissions |
BCD tables only load in the browser
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/permissions