Downloads UI

downloads.ui
Medium RiskCategory: System & PerformanceView Official Docs

Install Warning

"Manage your downloads."

Technical Context

Allows the extension to customize Chrome's download UI behavior using chrome.downloads.setUiOptions(). This can modify how the download shelf or panel appears and behaves.

What This Means For You

The extension can change how Chrome shows downloads to you, like hiding the download bar. This affects your visibility into what is being downloaded.

Related APIs

This permission enables access to these Chrome APIs:

chrome.downloads.setUiOptions

Common Use Cases

  • Download managers
  • UI customizers

How to Declare in manifest.json

Add the "downloads.ui" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "downloads.ui"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Manage your downloads."

Related Permissions