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 = self.permissions
Value
A Permissions
object.
Examples
self.navigator.permissions.query({name:'notifications'}).then(function(result) {
if (result.state === 'granted') {
showNotification();
} else if (result.state === 'prompt') {
requestNotificationPermission()
}
});
Specifications
Specification | Status | Comment |
---|---|---|
Permissions | Working Draft | Initial definition. |
Browser Support
BCD tables only load in the browser