Enterprise Device Attributes

enterprise.deviceAttributes
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Grants read access to device attributes in enterprise-managed Chrome environments. This includes device identifiers and directory API IDs set by administrators.

What This Means For You

In company-managed Chrome, the extension can see device information set by IT administrators. This is only relevant for enterprise deployments.

Related APIs

This permission enables access to these Chrome APIs:

chrome.enterprise.deviceAttributes

Common Use Cases

  • Enterprise management
  • Asset tracking

How to Declare in manifest.json

Add the "enterprise.deviceAttributes" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "enterprise.deviceAttributes"
  ]
}

Related Permissions