WorkerNavigator.permissions

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()
  }
});

Specification

Specification Status Comment
Permissions Working Draft Initial definition.

Browser Support

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
permissions
Experimental
Chrome Full support 43Edge Full support ≤79Firefox No support NoIE ? Opera Full support 30Safari No support NoWebView Android Full support 43Chrome Android Full support 43Firefox Android No support NoOpera Android Full support 30Safari iOS No support NoSamsung Internet Android Full support 4.0

Legend

Full support
Full support
No support
No support
Compatibility unknown
Compatibility unknown
Experimental. Expect behavior to change in the future.
Experimental. Expect behavior to change in the future.

See also