chrome.enterprise.deviceAttributes

Description

Use the chrome.enterprise.deviceAttributes API to read device attributes. Note: This API is only available to extensions force-installed by enterprise policy.

Permissions

enterprise.deviceAttributes

Availability

Chrome 46+ ChromeOS only Requires policy

Methods

getDeviceAnnotatedLocation()

Chrome 66+
chrome.enterprise.deviceAttributes.getDeviceAnnotatedLocation(): Promise<string>

Fetches the administrator-annotated Location. If the current user is not affiliated or no Annotated Location has been set by the administrator, returns an empty string.

Returns

  • Promise<string>

    Chrome 96+

getDeviceAssetId()

Chrome 66+
chrome.enterprise.deviceAttributes.getDeviceAssetId(): Promise<string>

Fetches the administrator-annotated Asset Id. If the current user is not affiliated or no Asset Id has been set by the administrator, returns an empty string.

Returns

  • Promise<string>

    Chrome 96+

getDeviceHostname()

Chrome 82+
chrome.enterprise.deviceAttributes.getDeviceHostname(): Promise<string>

Fetches the device's hostname as set by DeviceHostnameTemplate policy. If the current user is not affiliated or no hostname has been set by the enterprise policy, returns an empty string.

Returns

  • Promise<string>

    Chrome 96+

getDeviceSerialNumber()

Chrome 66+
chrome.enterprise.deviceAttributes.getDeviceSerialNumber(): Promise<string>

Fetches the device's serial number. Please note the purpose of this API is to administrate the device (e.g. generating Certificate Sign Requests for device-wide certificates). This API may not be used for tracking devices without the consent of the device's administrator. If the current user is not affiliated, returns an empty string.

Returns

  • Promise<string>

    Chrome 96+

getDirectoryDeviceId()

chrome.enterprise.deviceAttributes.getDirectoryDeviceId(): Promise<string>

Fetches the value of the device identifier of the directory API, that is generated by the server and identifies the cloud record of the device for querying in the cloud directory API. If the current user is not affiliated, returns an empty string.

Returns

  • Promise<string>

    Chrome 96+