This cli tool can be used to download old (and therefore unsupported) versions of chromium.
In case you found this tool: This is not ready-to-use yet. You might be able to use it, but the documentation is incomplete and some features are not implemented yet. Contact me for more information: buzz-t@buzz-t.eu
Reasons to use this tool:
Reasons to NOT use this tool:
To be explicit:
⚠️ The downloaded versions are OUTDATED and UNSUPPORTED! Some known and exploitable bugs, that are already fixed on newer versions, still exist. That’s why new versions were released! Use this only for debugging purposes for websites YOU CONTROL! NEVER use these versions for browsing! NEVER EVER enter private data in these browser versions and NEVER EVER login to accounts with these browser versions!!! ⚠️
npm install -g rusted-chromium
rusted-chromium --help
git clone https://github.com/BuZZ-T/rusted-chromium
cd rusted-chromium
npm install
npm test
npm start -- --help # the two extra dashes are important to pass arguments to the script!
| Flag | Short | Default | Description |
|---|---|---|---|
--max |
-M |
10000 | Maximum version which should be selectable. |
--min |
-m |
0 | Minimum version which should be selectable. |
--max-results |
-r |
10 | Maximum number of results to select. Directly downloads the binary, if set to 1. |
--os |
-o |
The operation system on the current system | Set the operation system of the binary. Valid values are “win”, “linux” and “mac”/“darwin”. |
--arch |
-a |
The architecture on the current system | Set the architecture of the binary. The flag is only regarded, if --os is present. Valid values are “x86” and “x64”. “x86” is ignored for “mac”. |
--unzip |
-z |
false | Directly unzip the downloaded zip-file and delete the .zip afterwards |
--decreaseOnFail |
-d |
false | Automatically try the next lower version, if the selected version has no binary. |
--increaseOnFail |
-i |
false | Automatically try the next higher version, if the selected version has no binary. |
--non-interactive |
-n |
false | Don’t display the version selection. Automatically select the newest version in the available range (set by --min, --max and --max-results). Only works when --decreaseOnFail is set as well. |
--no-download |
-l |
false | Don’t download the binary if it’s found. |
--version |
-V |
- | Show current version. |
--help |
-h |
- | Display a help with all available flags. |
# long version
rusted-chromium --min 60 --max 70
# short version
rusted-chromium -m 60 -M 70NOTE: Currently makes no sense, as the minor version is always “0”.
rusted-chromium --max 70.0rusted-chromium --max 70.0.3539rusted-chromium --max 70.0.3539.100# long version
rusted-chromium --max 70 --max-results 30
# short version
rusted-chromium -M 70 -r 30# long version
rusted-chromium --max 80 --decreaseOnFail -non-interactive --no-download
# short version
rusted-chromium -M 80 -dnlNOTE: This supports --max --min as well!
# long version
rusted-chromium --max-results 1
# short version
rusted-chromium -r 1NOTE: This is using unzipper which loses executable flags for binaries
# long version
rusted-chromium --unzip
# short version
rusted-chromium -zNOTE: This regards --min, --max and --max-results
# long version
rusted-chromium --max 30 --decreaseOnFail
# short version
rusted-chromium -M 30 -dNOTE: This regards --min, --max and --max-results
# long version
rusted-chromium --max 30 --increaseOnFail
# short version
rusted-chromium -M 30 -i# long version
rusted-chromium --max 78 --max 79.0.3909.0 --max-results 7 -d --non-interactive
# short version
rusted-chromium -M 79.0.3909.0 -r 7 -d -n# long version
rusted-chromium --help
# short version
rusted-chromium -h# long version
rusted-chromium --version
# short version
rusted-chromium -VI’m accepting pull requests and feature requests (no guarantee that i will implement this fast or implement this at all, but feel free to ask).
NO, NO and NO. This CLI basically automates the manual steps mentioned in https://www.chromium.org/getting-involved/download-chromium in the section “Downloading old builds of Chrome / Chromium”. So only official chromium APIs are called and only official binaries are downloaded.
So, this project: