You can’t make apt ignore dependencies, but you can create a fake gstreamer0.10-plugins-good package which will satisfy the missing dependency. The simplest way to do this is using equivs:
install
equivssudo apt install equivsgenerate a template control file
equivs-contrlcontrol gstreamer0.10-plugins-good.controlfix the package name
sed -i 's/<package name; defaults to equivs-dummy>/gstreamer0.10-plugins-good/g' gstreamer0.10-plugins-good.controlbuild the package
equivs-build gstreamer0.10-plugins-good.controlinstall it
sudo dpkg -i gstreamer0.10-plugins-good_1.0_all.deb
That should satisfy the opera package’s dependency.