Bandwidth limiting for specific application (google-chrome in this case):
trickle -d 600 -u 200 google-chrome
units are in kbits
Total bandwidth limiting for an ethernet device :
sudo wondershaper eth0 600 200
Units are in kbits again. Change eth0 to your interface name. It uses tc tbf and htb...
To master connectivity on linux, commands & programs you need to learn are :
ip
ifconfig
route
iptables
netstat
tc
wondershaper
trickle
iftop
iptraf-ng
wget
curl
nslookup
dig
The document you need to use as a reference is :
https://www.lartc.org/howto/index.html
Cookbook has nice examples in this document.
An easy-to-read flowing blog page is :
https://www.cnblogs.com/zengkefu/p/5635100.html
Do not forget to have fun experimenting with them ;).