If you’re a team owner or administrator, you can turn off the default browser password manager for your team, so their passwords are only saved in 1Password. You can use these steps to turn off the browser password manager in Chrome, Firefox, and Edge.
On Mac, use mobile device management (MDM) to turn off the built-in password manager in the browser for your team:
Open your text editor and create a new file. Enter the following information:
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>PasswordManagerEnabled</key> <false /> </dict> </plist>
Save the file as a property list (.plist) for the browser you want to manage. For example:
- Chrome:
com.google.Chrome.plist
- Firefox:
com.mozilla.Firefox.plist
- Edge:
com.microsoft.Edge.plist
If you have an existing property list for the browser, add the PasswordManagerEnabled key and turn it off.
- Chrome:
Convert the property list file to a configuration profile using your preferred conversion tool, such as mcxToProfile , and deploy the profile using MDM.
If your team doesn't use MDM, you can add the profile to each Mac locally by double-clicking it.
To verify that the built-in password manager is turned off:
Chrome
- Open Chrome and click the Chrome menu in the toolbar.
- Choose Settings > Autofill and passwords > Password Manager.
Firefox
- Open Firefox and click the Firefox menu in the toolbar.
- Choose Settings > Privacy & Security.
Edge
- Open Edge and click the Edge menu in the toolbar.
- Choose Settings > Passwords.
Tip
If your team isn’t using Windows Pro or Enterprise, you can still turn off the built-in password manager in the browser.
On Windows Pro or Enterprise, use Group Policy Objects (GPO) to turn off the built-in password manager in the browser for your team:
Chrome
Press the Windows logo key + R and enter the following line to open Group Policy Management:
gpmc.msc
In the Group Policy Editor, open Administrative Templates > Google > Google Chrome > Password Manager.
Choose Enable saving passwords to the password manager and click Disable > Apply > OK.
To verify that the built-in password manager is turned off, open Chrome, click the Chrome menu in the toolbar, and choose Settings > Autofill > Passwords.
Firefox
Press the Windows logo key + R and enter the following line to open Group Policy Management:
gpmc.msc
In the Group Policy Editor, open Administrative Templates > Mozilla > Firefox > Password Manager.
Choose Enable saving passwords to the password manager and click Disable > Apply > OK.
To verify that the built-in password manager is turned off, open Firefox, click the Firefox menu in the toolbar, and choose Preferences > Privacy & Security.
Edge
Press the Windows logo key + R and enter the following line to open Group Policy Management:
gpmc.msc
In the Group Policy Editor, open Administrative Templates > Microsoft Edge > Password manager and protection.
Choose Enable saving passwords to the password manager and click Disable > Apply > OK.
To verify that the built-in password manager is turned off, open Edge, click the Edge menu in the toolbar, and choose Settings > Passwords.
If your team doesn’t use Windows Pro or Enterprise
If your team doesn’t use Windows Pro or Enterprise and can’t access Group Policy Manager, follow these steps to turn off the built-in password manager in the browser on any Windows PC:
Chrome
Press the Windows logo key + R and enter “regedit”.
In the address bar, enter the following path for your computer:
\HKEY_LOCAL_MACHINE\SOFTWARE\Policies
If you don't see the Policies folder, click Edit in the menu bar, choose New, and create a new folder called Policies.
Click New in the menu bar and create a folder called Google. In the Google folder, create a folder called Chrome.
Click Edit in the menu bar, choose New, and create a DWORD (32-bit) Value key named
PasswordManagerEnabled
.Right-click the
PasswordManagerEnabled
key, choose Modify, and enter 0 in the “Value data” field.
To verify that the built-in password manager is turned off, open Chrome, click the Chrome menu in the toolbar, and choose Settings > Autofill > Passwords.
Firefox
Press the Windows logo key + R and enter “regedit”.
In the address bar, enter the following path for your computer:
\HKEY_LOCAL_MACHINE\SOFTWARE\Policies
If you don't see the Policies folder, click Edit in the menu bar, choose New, and create a new folder called Policies.
- Click New in the menu bar and create a folder called Mozilla. In the Mozilla folder, create a folder called Firefox.
- Click Edit in the menu bar, choose New, and create a DWORD (32-bit) Value key named
PasswordManagerEnabled
. - Right-click the
PasswordManagerEnabled
key, choose Modify, and enter 0 in the “Value data” field.
To verify that 1Password is installed, open Firefox, click the Firefox menu in the toolbar, and choose Add-ons.
Edge
Press the Windows logo key + R and enter “regedit”.
In the address bar, enter the following path for your computer:
\HKEY_LOCAL_MACHINE\SOFTWARE\Policies
If you don't see the Policies folder, click Edit in the menu bar, choose New, and create a new folder called Policies.
Click New in the menu bar and create a folder called Microsoft. In the Microsoft folder, create a folder called Edge.
Click Edit in the menu bar, choose New, and create a DWORD (32-bit) Value key called
PasswordManagerEnabled
.Right-click the
PasswordManagerEnabled
key, choose Modify, and enter 0 in the Value data field.
To verify that 1Password is installed, open Edge, click the Edge menu in the toolbar, and choose Extensions.
On Linux, you can use JSON to turn off the built-in password manager in Firefox for your team:
Open the Applications folder, right-click Firefox and choose Show Package Contents.
In the Contents > Resources folder, create a new folder called
distribution
.Save the following in a file called
policies.json
:{"policies":{"PasswordManagerEnabled":false}}
To verify that the built-in password manager is turned off, open Firefox, click the Firefox menu in the toolbar, and choose Preferences > Privacy & Security.