WorkerNavigator.permissions
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
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.
Syntax
permissionsObj = navigator.permissions
Value
A Permissions
object.
Examples
navigator.permissions.query({name:'notifications'}).then(function(result) { if (result.state === 'granted') { showNotification(); } else if (result.state === 'prompt') { requestNotificationPermission() } });
Specifications
Specification |
---|
Permissions # dom-workernavigator-permissions |
Browser Support
BCD tables only load in the browser
See also
© 2005–2021 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