Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download older versions of Chrome from a google official site

Chrome websites offers only download for the latest version. However it is sometimes necessary to debug a web app against an older version of Chrome.

There are several third-party sites (as mentioned in https://stackoverflow.com/questions/33705280/how-to-download-an-old-version-of-chrome) that allows to download Chrome binaries but I don't want to download from those third-party for security reasons.

So the question is is there some way to download older versions of Chrome from a google managed server?

like image 591
Sebastien Avatar asked Feb 28 '19 14:02

Sebastien


People also ask

Where can I download an older version of Chrome?

And you asked for testing purposes. Simply go to here: slimjet.com/chrome/google-chrome-old-version.php , find your os & choose a version, download & install.

How do I go back to old version of Chrome?

First off, you will have to uninstall the currently installed build of Chrome as well as its associated data. After that, you may download and install an older version of this browser. Finally, you would then have to disable Chrome's automatic update process. Follow along for the detailed instructions.


3 Answers

Older version of Chrome are not publicly available but you can find and download the matching Chromium binaries from the Chromium build server.

To do so follow the procedure below (derived from Chromium wiki):

1/ Find the Full Version Number

You can lookup the full version number matching a release by searching in the Chrome Releases Blog

Example:

  • Searching for "Chrome 69"
  • We find this Blog Entry
  • That lists the full version number 69.0.3497.81

2/ Find the Branch Base Position

Use the "Version Information" tool to find a Branch Base Position for the Full Version number. To do that enter the Full Version Number and press lookup. If the version returns an empty Branch Base Position try increment the last component of the version until you get a Branch Base Version.

Example:

Looking up 69.0.3497.81 image.png retrieves no Branch Base Position

But looking up 69.0.3497.82 enter image description here retrieves Branch Base Position: 576753

3/ Download the content for Branch Base Position and platform

Then download the content from the url where you replaced your platform and Branch Base Position value. https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=[platform]/[Branch Base Position]/

Where [platform] is either "Win_x64", "Linux_x64" or "Mac"

Example:

for Chrome 69 on Linux https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/576753/

like image 167
Sebastien Avatar answered Oct 14 '22 13:10

Sebastien


@Sebastien is right.

But if you want to download Chromium without known any version number, this page provides verison list to download:

https://vikyd.github.io/download-chromium-history-version/

Unofficial page, but official downlaod links inside. still safe.

like image 45
vikyd Avatar answered Oct 14 '22 13:10

vikyd


I was having some trouble with the accepted answer, but I found this list of official download links by version number:

https://chromium.cypress.io

like image 35
Lazer Porter Avatar answered Oct 14 '22 15:10

Lazer Porter