Any way to install specific/older chrome browser version Any way to install specific/older chrome browser version docker docker

Any way to install specific/older chrome browser version


For deb package at Ubuntu - Chrome:

CHROME_VERSION=77.0.3865.120-1wget --no-check-certificate https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.debdpkg -i google-chrome-stable_${CHROME_VERSION}_amd64.deb || apt -y -f installrm google-chrome-stable_${CHROME_VERSION}_amd64.deb;

For Chromium:For more info about old Chromium, please refer to: https://github.com/Bugazelle/chromium-all-old-stable-versions

CHROMIUM_VERSION=77.0.3865.120wget --no-check-certificate https://raw.githubusercontent.com/Bugazelle/chromium-all-old-stable-versions/master/chromium.stable.jsondownload=$(jq -r ".linux64.\"${CHROMIUM_VERSION}\".download_url" chromium.stable.json)position=$(jq -r ".linux64.\"${CHROMIUM_VERSION}\".download_position" chromium.stable.json)echo "download url is: ${download}"echo "position is: ${position}"wget --no-check-certificate -O chromium.zip ${download}


You can find latest two years chrome deb from next link:

https://repo.fdzh.org/chrome/deb/pool/main/g/

Right-click the deb to get the download address of any version's deb. Then you still can use curl to download.