File System Provider

fileSystemProvider
Medium RiskCategory: Device AccessView Official Docs

Technical Context

Enables the extension to implement virtual file systems accessible through Chrome OS's file manager. This allows mounting cloud storage or archives as local drives.

What This Means For You

On Chromebooks, the extension can make cloud storage or remote files appear as folders in your Files app. This creates a seamless way to access files stored elsewhere.

Related APIs

This permission enables access to these Chrome APIs:

chrome.fileSystemProvider

Common Use Cases

  • Cloud storage clients
  • Archive viewers
  • Network drives

How to Declare in manifest.json

Add the "fileSystemProvider" permission to your extension manifest:

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

Related Permissions