WorkerNavigator: permissions property
Note: This feature is only available in Web Workers.
The permissions
read-only property of the WorkerNavigator
interface
returns a Permissions
object that can be used to query and update
permission status of APIs covered by the Permissions API.
Value
A Permissions
object.
Examples
js
navigator.permissions.query({ name: "notifications" }).then((result) => {
if (result.state === "granted") {
showNotification();
} else if (result.state === "prompt") {
requestNotificationPermission();
}
});
Specifications
Specification |
---|
Permissions # dom-workernavigator-permissions |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
permissions |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- See implementation notes.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.