Opt-In Software Blog

Downloading a Specific Stable Google Chrome Version for Linux

Read in: English | Русский

Google only offers the latest build on its official download page. If you need a specific older or pinned stable version for testing, you can download the .deb package directly from Google’s servers.

1. Find the Chrome Version Number

You need the full release version string (e.g., 150.0.7871.181). You can find official build numbers using these resources:

2. Construct the Download URL

Google stores the package history in its Debian repository pool. Replace {CHROME_VERSION} in the template below with your target version number:

https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_{CHROME_VERSION}-1_amd64.deb

For example, to download version 150.0.7871.181, use the following URL:

https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_150.0.7871.181-1_amd64.deb

3. Download via Terminal

You can pull the package directly using wget or curl:

curl https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_150.0.7871.181-1_amd64.deb --output google-chrome-stable_150.0.7871.181-1_amd64.deb