-
-
Notifications
You must be signed in to change notification settings - Fork 6
Managed Storage
Temporary Containers Plus includes comprehensive managed storage support for enterprise environments. Administrators can configure and lock extension settings through Firefox Enterprise Policies, providing centralized management across organizations.
- Policy-based configuration management - Configure settings through Firefox Enterprise Policy
- Setting locking - Prevent users from modifying critical security settings
- Centralized deployment - Deploy consistent configurations across organizations
- Real-time policy updates - Changes apply without extension restart
- Cross-platform support - Windows Group Policy, macOS profiles, and Linux policies
⚠️ IMPORTANT WARNINGNo Setting Validation: The extension currently does not validate managed storage configurations. Invalid setting names, incorrect data types, or malformed values in your policy configuration will cause runtime errors and may prevent the extension from functioning properly.
Always verify your configuration by testing in a development environment first and checking the browser console for errors after deployment.
For detailed configuration instructions, templates, and enterprise deployment guides, see the Enterprise Documentation in the main repository:
- Complete Setup Guide - Step-by-step configuration for all platforms
- Configuration Schema - Complete schema reference
- Example Configurations - Working configuration examples
- Policy Templates - Pre-built security configurations
Modern managed storage configuration uses Firefox Enterprise Policy with the new extension ID:
{
"policies": {
"3rdparty": {
"Extensions": {
"{1ea2fa75-677e-4702-b06a-50fc7d06fe7e}": {
"version": "1.0.0",
"policy_name": "Corporate Security Policy",
"locked_settings": ["automaticMode.active", "deletesHistory.active"],
"preferences": {
"automaticMode": {
"active": true,
"newTab": "created"
},
"container": {
"namePrefix": "corp-tmp",
"color": "blue",
"removal": 300000
},
"deletesHistory": {
"active": true,
"automaticMode": "automatic"
}
}
}
}
}
}
}For Linux, place the configuration in /etc/firefox/policies/policies.json. For macOS, use a configuration profile with the same structure.
For complex enterprise deployments requiring custom security policies, refer to the complete enterprise documentation which includes additional templates and configuration options for specific organizational requirements.
For enterprise support, configuration assistance, and additional templates, please refer to the Enterprise Documentation or contact the maintainers with your specific requirements.