Toolbox settings are stored in your browser’s extension local storage under a singleDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/toolbox-team/reddit-moderator-toolbox/llms.txt
Use this file to discover all available pages before exploring further.
tbsettings object. Every setting belongs to a specific module and is keyed as Toolbox.ModuleID.settingName, so settings from different modules never collide. You can read and adjust all settings through the Toolbox settings panel without touching storage directly.
How settings are stored
Each setting is saved as a flat key-value pair inside thetbsettings storage object. The key format is always:
Toolbox.Modbar.enabled, and the usernotes color scheme is stored as Toolbox.Usernotes.noteTypeColors.
Setting values of
null are never written to storage. If a setting is absent from storage, Toolbox falls back to the default value defined in the module’s registration code.Accessing the settings panel
Open the Toolbox settings panel
Click the gear icon in the mod bar at the top of any Reddit page, or use the Toolbox settings link that appears in the mod bar dropdown. The settings panel opens as an overlay on the current page.
Navigate to a module
The left sidebar of the settings panel lists every Toolbox module. Click a module name to jump to its settings section on the right.
Adjust settings
Change values using the provided controls — toggle switches, number inputs, text fields, dropdowns, or textareas depending on the setting type. Changes are saved immediately to browser extension storage.
Setting types
Boolean toggle
An on/off switch. Stored as
true or false. Most module enable/disable flags are boolean toggles.Number field
A numeric input. Used for values like notification check intervals or queue size thresholds.
Text field
A single-line string input. Used for values like custom CSS class names or subreddit names.
Selector
A dropdown with a fixed set of named options. Used when a setting has a small number of valid choices, such as delivery methods or display modes.
Textarea
A multi-line text input. Used for free-form content like custom CSS or template text.
Settings key reference
The table below shows the key structure for a few common settings to illustrate the naming convention.| Storage key | Module | Type | Description |
|---|---|---|---|
Toolbox.Modbar.enabled | Modbar | boolean | Enable or disable the Toolbox mod bar |
Toolbox.Modbar.customCSS | Modbar | textarea | Custom CSS injected into Reddit pages |
Toolbox.Notifier.lastChecked | Notifier | number | Timestamp of the last notification check |
Toolbox.QueueTools.enabled | QueueTools | boolean | Enable queue management tools |
Toolbox.Usernotes.enabled | Usernotes | boolean | Enable the usernotes module |
Advanced settings
Advanced settings are hidden by default to keep the panel uncluttered for most moderators. When you enable Show advanced settings in the panel header, additional controls appear within each module section. These typically cover:- Fine-grained timing controls (e.g., polling intervals)
- Experimental or rarely-needed behaviors
- Internal counters and caches you may want to reset manually