Downloads

downloads
Medium RiskCategory: System & PerformanceView Official Docs

Install Warning

"Manage your downloads."

Technical Context

Grants access to the chrome.downloads API for programmatically initiating, monitoring, manipulating, and searching for downloads. This enables comprehensive download management functionality.

What This Means For You

The extension can start downloads, see your download history, pause or cancel downloads, and open downloaded files. This is powerful access to your file downloads.

Related APIs

This permission enables access to these Chrome APIs:

chrome.downloads

Common Use Cases

  • Download managers
  • Media downloaders
  • File organizers

How to Declare in manifest.json

Add the "downloads" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Manage your downloads."

Related Permissions