User Settings
The User Settings extension adds a custom section to the user's Settings menu in the Showpad Web App. Use it to let users configure preferences that other parts of your app depend on.
What you'll learn:
- What the User Settings extension does and where it appears in the Showpad Web App
- How to declare it in your
manifest.json
Use the userSettings property in your manifest to define it:
"userSettings": [
{
"extensionKey": "slack-settings",
"name": "Slack",
"description": "Settings for the Slack integration",
"resources": {
"folder": "slack"
}
}
]
note
The section renders your extension resources inside an iframe.
Next Steps
- Add a User Settings Extension - wire up this extension type in your app
- Manifest File - full property reference for
userSettings
Was this page helpful?