Skip to main content
Question

Mozilla Firefox - * AI Controls - Configuraiton Profile?

  • March 2, 2026
  • 3 replies
  • 50 views

JevermannNG
Forum|alt.badge.img+9

How can I manage the new

* AI Controls

within Firefox with a Configuration Profile?

Is there a way to configure it via a JSON?

Thanks in advance!

3 replies

Jared_Y
Forum|alt.badge.img+14
  • Jamf Heroes
  • March 4, 2026

@JevermannNG here is what is working for me. Make sure you fold it into your existing Firefox config profile, I found that when I had more than one profile, Firefox didn’t respect all the keys and not all the options were blocked. 

<key>GenerativeAI</key>
<dict>
<key>Chatbot</key>
<false/>
<key>Enabled</key>
<false/>
<key>LinkPreviews</key>
<false/>
<key>Locked</key>
<true/>
<key>TabGroups</key>
<false/>
</dict>
<key>Preferences</key>
<dict>
<key>browser.ai.control.pdfjsAltText</key>
<dict>
<key>Status</key>
<string>locked</string>
<key>Value</key>
<string>blocked</string>
</dict>
<key>browser.ai.control.translations</key>
<dict>
<key>Status</key>
<string>locked</string>
<key>Value</key>
<string>blocked</string>
</dict>
<key>pdfjs.enableAltText</key>
<dict>
<key>Status</key>
<string>locked</string>
<key>Value</key>
<false/>
</dict>
</dict>

 


JevermannNG
Forum|alt.badge.img+9
  • Author
  • Valued Contributor
  • March 6, 2026

@Jared_Y  Thank you for your Help! I will try those settings next week and send my feedback.


FerrisBNA
Forum|alt.badge.img+3
  • Contributor
  • March 6, 2026

Here is the link to the officially maintained Mozilla Firefox settings

https://github.com/mozilla/policy-templates/blob/master/mac/org.mozilla.firefox.plist

Example:

-Pat