- Jul 2023
-
developer.chrome.com developer.chrome.com
-
```js // Log the full user-agent data navigator .userAgentData.getHighEntropyValues( ["architecture", "model", "bitness", "platformVersion", "fullVersionList"]) .then(ua => { console.log(ua) });
// output { "architecture":"x86", "bitness":"64", "brands":[ { "brand":" Not A;Brand", "version":"99" }, { "brand":"Chromium", "version":"98" }, { "brand":"Google Chrome", "version":"98" } ], "fullVersionList":[ { "brand":" Not A;Brand", "version":"99.0.0.0" }, { "brand":"Chromium", "version":"98.0.4738.0" }, { "brand":"Google Chrome", "version":"98.0.4738.0" } ], "mobile":false, "model":"", "platformVersion":"12.0.1" } ```
Tags
- http:header=sec-ch-ua-full-version-list
- cito:cites=urn:ietf:rfc:8942
- http:header=sec-ch-ua-mobile
- http
- http:header=sec-ch-ua-bitness
- mobile
- http:header=sec-ch-ua
- http:header=sec-ch-ua-platform-version
- http:header=user-agent
- http:header=sec-ch-ua-model
- js
- cito:cites=urn:ietf:rfc:1945
- <meta http-equiv="accept-ch"/>
- http:header=accept-ch
- conneg
- http:header=sec-ch-ua-full-version
- http:header=sec-ch-ua-arch
- wikipedia:en=HTTP_Client_Hints
- http:header=sec-ch-ua-platform
Annotators
URL
-
-
wicg.github.io wicg.github.io
-
```idl dictionary NavigatorUABrandVersion { DOMString brand; DOMString version; };
dictionary UADataValues { DOMString architecture; DOMString bitness; sequence<NavigatorUABrandVersion> brands; DOMString formFactor; sequence<NavigatorUABrandVersion> fullVersionList; DOMString model; boolean mobile; DOMString platform; DOMString platformVersion; DOMString uaFullVersion; // deprecated in favor of fullVersionList boolean wow64; };
dictionary UALowEntropyJSON { sequence<NavigatorUABrandVersion> brands; boolean mobile; DOMString platform; };
[Exposed=(Window,Worker)] interface NavigatorUAData { readonly attribute FrozenArray<NavigatorUABrandVersion> brands; readonly attribute boolean mobile; readonly attribute DOMString platform; Promise<UADataValues> getHighEntropyValues (sequence<DOMString> hints ); UALowEntropyJSON toJSON (); };
interface mixin NavigatorUA { [SecureContext] readonly attribute NavigatorUAData userAgentData ; };
Navigator includes NavigatorUA; WorkerNavigator includes NavigatorUA; ```
Tags
- http:header=sec-ch-ua-wow64
- http:header=sec-ch-ua-full-version-list
- cito:cites=urn:ietf:rfc:8942
- http:header=sec-ch-ua-form-factor
- http
- http:header=sec-ch-ua-mobile
- http:header=sec-ch-ua-bitness
- mobile
- http:header=sec-ch-ua
- http:header=sec-ch-ua-platform-version
- http:header=user-agent
- http:header=sec-ch-ua-model
- http:header=accept-ch
- conneg
- http:header=sec-ch-ua-full-version
- http:header=sec-ch-ua-arch
- wikipedia:en=HTTP_Client_Hints
- http:header=sec-ch-ua-platform
Annotators
URL
-