To see everything you have installed

apt list --installed

You can apply filters on that to narrow down to help find package name(s) you're looking for.

apt list --installed | grep chromium

And of course, there's a command line way to remove it with APT.

sudo apt remove chromium

Gathering documentation about my linux journey