File Browser Handler

fileBrowserHandler
Low RiskCategory: Device AccessView Official Docs

Technical Context

Allows the extension to extend Chrome OS's file browser with custom actions for specific file types. This is a ChromeOS-specific permission.

What This Means For You

On Chromebooks, the extension can add new options for handling files in the Files app. This is only available on Chrome OS.

Related APIs

This permission enables access to these Chrome APIs:

chrome.fileBrowserHandler

Common Use Cases

  • File converters
  • Cloud storage
  • File editors

How to Declare in manifest.json

Add the "fileBrowserHandler" permission to your extension manifest:

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

Related Permissions