First off
Let’s cut to the chase.
- Ensure that 1Password for Linux is installed along with 1Password in your browser, and that browser integration is enabled from Settings → Browser within 1Password for Linux.
Once you have done that. We can check out the file named “custom_allowed_browers” in the resource folder of 1Password.
cat /opt/1Password/resources/custom_allowed_browsers
This should return something similar to this:
|
|
As we can see. 1Password (while not officially) has somewhat experimental support to enable the extension on other browsers. Examples here listed being Vivaldi and Opera.
This file is a whitelist for 1Password to allow a connection between applications. I would assume 1Password does this for security purposes? Anyway, I will have a complete install script below.
How to enable it
- Close 1Password completely.
- Open a terminal, and run
sudo mkdir /etc/1password
. - cd into the folder
cd /etc/1password
. - Run
sudo vi custom_allowed_browsers
or the editor of your choice (I just like vim). - Paste in the binary name of your web browser executable - such as
opera
orvivaldi-bin
. - Save the file.
- In the terminal, run
sudo chown root:root /etc/1password/custom_allowed_browsers && sudo chmod 755 /etc/1password/custom_allowed_browsers
- Run 1Password - It will now read the new config file and make the appropriate connections.
- Launch your browser! 😎
A script for your convenience!
|
|
That’s it!