Available Permissions
Requesting Permissions
Inmanifest.json:
Best Practices
- Request only what you need.
- Explain why each permission is needed.
- Handle denials gracefully.
- Test without permissions to verify fallback behavior.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Permission | Description | Use Case |
|---|---|---|
inference | Access LLM inference API | Generate text, chat |
storage | Read/write app-scoped data | Save user preferences |
clipboard_read | Read from system clipboard | Paste code/text |
clipboard_write | Write to system clipboard | Copy results |
embeddings | Generate text embeddings | Semantic analysis |
vector_store | Index and search documents | RAG, knowledge base |
network | Make HTTP requests | Future feature |
manifest.json:
{
"permissions": [
"inference",
"storage",
"clipboard_read",
"clipboard_write",
"embeddings",
"vector_store"
]
}