Web/API/WorkerNavigator

From Get docs

The WorkerNavigator interface represents a subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator.

Properties

The WorkerNavigator interface implements properties from the NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorDataStore, and NavigatorConcurrentHardware interfaces.

WorkerNavigator.connectionRead only
Provides a NetworkInformation object containing information about the network connection of a device.
WorkerNavigator.locks  ' Read only
Returns a LockManager object which provides methods for requesting a new Lock object and querying for an existing Lock object.
WorkerNavigator.permissions  ' Read only
Returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.
Navigator.storageRead only '
Returns a StorageManager interface for managing persistance permissions and estimating available storage.

Inherited properties

NavigatorID.appCodeName  ' Read only
Always returns 'Mozilla', in any browser. This property is kept only for compatibility purposes.
NavigatorID.appName  ' Read only
Returns the official name of the browser. Do not rely on this property to return the correct value.
NavigatorID.appVersion  ' Read only
Returns the version of the browser as a string. Do not rely on this property to return the correct value.
NavigatorConcurrentHardware.hardwareConcurrencyRead only
Returns the number of logical processor cores available.
NavigatorLanguage.languageRead only
Returns a DOMString representing the language version of the browser. The null value is returned when this is unknown.
NavigatorLanguage.languagesRead only
Returns an array of DOMStrings representing the languages known to the user, in order of preference.
NavigatorOnLine.onLineRead only
Returns a Boolean indicating whether the browser is online.
NavigatorID.platform  ' Read only
Returns a string representing the platform of the browser. Do not rely on this property to return the correct value.
NavigatorID.product  ' Read only
Always returns 'Gecko', on any browser. This property is kept only for compatibility purposes.
NavigatorID.userAgentRead only
Returns the user agent string for the current browser.

Methods

The WorkerNavigator interface implements methods from the NavigatorID, NavigatorLanguage and NavigatorOnLine interfaces.

Specifications

Specification Status Comment
HTML Living StandardThe definition of 'WorkerNavigator' in that specification. Living Standard

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
WorkerNavigator Chrome

Full support 1

Edge

Full support ≤79

Firefox

Full support 3.5

IE

?

Opera

Full support Yes

Safari

?

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 4

Opera Android

Full support Yes

Safari iOS

?

Samsung Internet Android

Full support Yes

connection

Experimental'

Chrome

Full support 61

Edge

Full support ≤79

Firefox

No support No

IE

No support No

Opera

Full support Yes

Safari

No support No

WebView Android

Full support 50

Chrome Android

Full support 38

Firefox Android

Full support 53

Opera Android

Full support 37

Safari iOS

No support No

Samsung Internet Android

Full support 3.0

permissions

Experimental'

Chrome

Full support 43

Edge

Full support ≤79

Firefox

No support No

IE

No support No

Opera

Full support 30

Safari

No support No

WebView Android

Full support 43

Chrome Android

Full support 43

Firefox Android

No support No

Opera Android

Full support 30

Safari iOS

No support No

Samsung Internet Android

Full support 4.0

serviceWorker Chrome

?

Edge

?

Firefox

?

IE

No support No

Opera

?

Safari

?

WebView Android

?

Chrome Android

?

Firefox Android

?

Opera Android

?

Safari iOS

?

Samsung Internet Android

?

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