Disable browser default password managers - macOS
This topic detail the steps to disable the default password manager in the Edge, Firefox and Chrome browsers, as well as steps to confirm the password manager is disabled.
Disabling the browser default password manager
Edge
- Download the Microsoft Edge for macOS .pkg file.
- In Terminal, use the following command to create a
.plist
file for Microsoft Edge: - Use the following command to convert the .plist from binary to plain text:
- To disable Edge's built-in password manager, add the following to
com.microsoft.Edge.plist
: - Deploy the Edge
.pkg
and the configuration profile using your software distribution or MDM tool to all managed computers.
/usr/bin/defaults write ~/Desktop/com.microsoft.Edge.plist RestoreOnStartup -int 1
/usr/bin/plutil -convert xml1 ~/Desktop/com.microsoft.Edge.plist
<key>PasswordManagerEnabled</key>
<false/>
For Jamf-specific help, refer to Microsoft's documentation on Configuring Microsoft Edge policy settings on macOS with Jamf.
See Edge's documentation for configuration profiles and additional information.
Chrome
- Download the Google Chrome .dmg or .pkg for macOS.
- Download the Chrome Enterprise Bundle.
- Unzip the Enterprise Bundle (
GoogleChromeEnterpriseBundle64.zip
orGoogleChromeEnterpriseBundle32.zip
). - Open the
/Configuration/com.Google.Chrome.plist
file with any text editor. - To disable Chrome's built-in password manager, add the following to
com.Google.Chrome.plist
: - Convert the
com.Google.Chrome.plist
file to a configuration profile using a conversion tool of your choice. - Deploy the Chrome
.dmg
or.pkg
and the configuration profile using your software distribution or MDM tool to all managed computers.
<key>PasswordManagerEnabled</key>
<false />
For more help, refer to Google's Chrome Browser Quick Start for macOS guide, and for additional information, see Chrome's documentation for setting up Chrome browser on macOS.
Firefox
- Download and install Firefox for Enterprise for macOS.
- Create a directory name
distribution
inFirefox.app/Contents/Resources/
. - In the
/distribution
directory, create a new file namedorg.mozilla.firefox.plist
. - To disable Firefox's built-in password manager, add the following to
org.mozilla.firefox.plist
: - Convert the
org.mozilla.firefox.plist
file to a configuration profile using a conversion tool of your choice. - Deploy the Firefox
.dmg
and the configuration profile using your software distribution or MDM tool to all managed computers.
Use theFirefox.plist template and Policy README for reference.
<dict>
<key>PasswordManagerEnabled</key>
<false/>
</dict>
For additional information, see Firefox's documentation for macOS configuration profiles.