During CRD installation, the only option referenced is downloading the .deb package directly and then installing it using dpkg or apt. After some searching I figured out how to install it from apt directly.
- Download the Google apt GPG public key
sudo touch /usr/share/keyrings/google.gpg && wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /usr/share/keyrings/google.gpg > /dev/null
- Add the Chrome Remote Desktop respository to apt
- Update apt source
sudo apt update
- Install CRD
sudo apt install chrome-remote-desktop
Enjoy!