How to Disable Helperbird Features Using JSON Policy - Admins
Hide individual Helperbird features from your users with a managed JSON policy, with the policy code for every feature you can disable.
·
- admin
This guide shows you how to disable specific Helperbird features for users in your organization using the Google Admin Console and managed JSON policy.
This is useful if you want to limit access to certain tools (for example, writing or editing features) while keeping the rest of Helperbird available.
Before You Start
Make sure that:
- Helperbird is already added to your Organizational Unit (OU)
- You have administrator access to admin.google.com (opens in a new tab)
- You have already enabled admin control using
isAdminControl
If you havenโt done this yet, follow our guide: How to Set Helperbird JSON Policy in Google Admin
Understanding Feature Types in Helperbird
Helperbird features are grouped into two types:
Main Features (All Features)
- Appear in Helperbirdโs main feature list
- Disabling one removes it from the primary interface
Quick Features (Quick Actions)
- Appear in Quick Actions
- Disabling one removes it from the Quick Actions menu
Note: Some features appear in both places. Disabling them will remove the feature everywhere it appears.
How Feature Disabling Works
Helperbird uses two policy values:
disableFeatures- turns feature disabling on or offdisabledFeatures- the list of feature codes to disable
If disableFeatures is set to false, no features are disabled, even if a list exists.
Starter JSON Template (Recommended)
If youโre not sure where to start, use this starter template. It enables admin control and feature disabling, but does not disable anything yet.
{
"subKey": {
"Value": "YOUR SUBSCRIPTION KEY"
},
"isAdminControl": {
"Value": true
},
"disableFeatures": {
"Value": true
},
"disabledFeatures": {
"Value": []
}
}Add feature codes from the tables below into the disabledFeatures list.
Feature Tables
To disable a feature, copy the Policy Code and add it to the disabledFeatures list.
Quick Actions (Quick Features)
Codes marked (retired) name features that no longer ship. Leaving them in an existing policy is harmless โ Helperbird ignores them โ but they will not turn anything off, because there is nothing left to turn off. Remove them at your next policy edit.
| Feature | Policy Code |
|---|---|
| Settings App | SettingsApp |
| Highlight Menu | HighlightMenu |
| Summarize Page | SummarizePage |
| Reading Mode Tool | ReadingModeTool |
| Simplify Options | SimplifyOptions |
| Grammar Options | GrammarOptions |
| Immersive Reader | ImmersiveReader |
| Translate Options | TranslateOptions |
| PDF Reader | PdfReader |
| Annotation Reader | AnnotationReader |
| Reading List Reader | ReadinglistReader |
| Add to Reading List | ReadinglistReaderAdd |
| Editor | EditorReader |
| Dictionary / Define | DefineReader |
| Hover Light Options | HoverLightOptions |
| Voice Typing | VoiceTypingOptions |
| Sticky Note | StickyNote |
| Word Prediction | WordPrediction |
| Text to Speech Options | TextToSpeechOptions |
| Highlighter Marker | HighlighterMarkerOptions |
| Text Color | TextColor |
| Link Color | LinkColor |
| Background Color | BackgroundColor |
| Screenshot Reader | ExtractTextOptions |
| Speed Reading (retired) | SpeedReadingOptions |
| Screenshot | ScreenshotOptions |
| Overlay Tint | OverlayTint |
| Dyslexia Rulers | DyslexiaRulers |
| Custom Font | CustomFont |
| Text Size | TextSize |
| Word Spacing | WordSpacing |
| Letter Spacing | LetterSpacing |
| Line Height | LineHeight |
| Text Alignment | TextAligment |
| Paragraph Borders | ParagraphBorders |
| Paragraph Background | ParagraphBackground |
| Paragraph Width | ParagraphWidth |
| Paragraph Columns (retired) | ParagraphColumns |
| Show Alt Text | ShowAlt |
Show Titles (retired โ use ShowAlt) | ShowTitles |
| Hide Images | HideImages |
Hide GIFs (retired โ use HideImages) | HideGifs |
| Video Playback | VideoPlayback |
| Volume Booster | VolumeBooster |
| High Contrast | HighContrast |
| Emphasize Links | EmphasizeLinks |
| Text Stroke (retired) | TextStroke |
| Saturation Control | SaturationControl |
| Cursor Size | CursorSize |
| Zoom Control | ZoomControl |
| Reduce Motion | ReduceMotion |
| Spell Check | SpellCheck |
| Maths Options (retired โ the Screenshot Reader detects equations automatically) | MathsOptions |
| Print Tool (retired) | PrintTool |
| New Menu (retired โ Helperbird ignores this code) | NewMenu |
All Features (Main Features)
| Feature | Policy Code |
|---|---|
| Quick Actions Options (retired โ Helperbird ignores this code) | QuickActionsOptions |
| Ignition Button (retired โ Helperbird ignores this code) | IgnitionButton |
| Text to Speech Modal (retired โ Helperbird ignores this code) | TextToSpeechModal |
| Banner Message (retired โ Helperbird ignores this code) | BannerMessage |
| Reading Preferences | ReadingPreferences |
| Dyslexia Tools | DyslexiaTools |
| Translate Options | TranslateOptions |
| Screenshot Reader | ExtractTextOptions |
| Text to Speech Options | TextToSpeechOptions |
| Grammar Options | GrammarOptions |
| Highlight Menu | HighlightMenu |
| Maths Options (retired โ the Screenshot Reader detects equations automatically) | MathsOptions |
| Screenshot | ScreenshotOptions |
| Immersive Reader | ImmersiveReader |
| Reading Mode Tool | ReadingModeTool |
| Simplify Options | SimplifyOptions |
| Summarize Page | SummarizePage |
| Word Prediction | WordPrediction |
| Settings Modal (retired โ Helperbird ignores this code) | SettingsModal |
| Simplify Modal (retired โ Helperbird ignores this code) | SimplifyModal |
| Summarize Modal (retired โ Helperbird ignores this code) | SummarizeModal |
| Speed Reading (retired) | SpeedReadingOptions |
| Voice Typing | VoiceTypingOptions |
| Highlighter Marker | HighlighterMarkerOptions |
| Grammar Dialog (retired โ Helperbird ignores this code) | GrammarDialog |
| Display Options | DisplayOptions |
| PDF Reader | PdfReader |
| Annotation Reader | AnnotationReader |
| Reading List Reader | ReadinglistReader |
| Add to Reading List | ReadinglistReaderAdd |
| Editor | EditorReader |
| Dictionary / Define | DefineReader |
| Media Options | MediaOptions |
| Show Alt Text | ShowAlt |
Show Titles (retired โ use ShowAlt) | ShowTitles |
| Hover Light Options | HoverLightOptions |
| Reduce Motion | ReduceMotion |
| Hide Images | HideImages |
Hide GIFs (retired โ use HideImages) | HideGifs |
| Print Tool (retired) | PrintTool |
| Sticky Note | StickyNote |
Example: Disable the Helperbird Editor Feature
To disable the Helperbird Editor feature everywhere it appears, add:
{
"subKey": {
"Value": "YOUR SUBSCRIPTION KEY"
},
"isAdminControl": {
"Value": true
},
"disableFeatures": {
"Value": true
},
"disabledFeatures": {
"Value": [
"EditorReader"
]
}
}Commonly Disabled Features (Example)
The following features are commonly disabled in managed environments:
EditorReader
VoiceTypingOptions
ScreenshotOptionsExample JSON:
{
"subKey": {
"Value": "YOUR SUBSCRIPTION KEY"
},
"isAdminControl": {
"Value": true
},
"disableFeatures": {
"Value": true
},
"disabledFeatures": {
"Value": [
"EditorReader",
"VoiceTypingOptions",
"EditWebsite",
"ScreenshotOptions"
]
}
}Important Notes
- Feature codes are case-sensitive and must match the tables exactly
- Features that appear in both Main Features and Quick Actions will be removed from both
- Unknown or invalid feature codes are safely ignored
Verifying and Troubleshooting
If changes donโt appear immediately:
- Restart Chrome, or
- Visit
chrome://policyand click Reload policies
Double-check:
- The correct OU is selected
- JSON formatting is valid
disableFeaturesis set totrue
Validate Your Policy
Use our JSON Policy Validator to check your policy for errors, invalid feature codes, and see exactly what each setting does before deploying.
Need Additional Help?
If you need help finding a feature code or validating your policy, reach out to our Helperbird support team and we'll help you out!
Printed from the Helperbird Help Center · Updated August 28th, 2026
Questions? We are happy to help — helperbird.com/support
