what is my chrome version
To see what Chrome version you’re using, follow these quick steps (they work on Windows, macOS, Linux, and ChromeOS):
Quick Scoop: Find your Chrome version
Method 1: Through Chrome’s menu
- Open Google Chrome.
- Click the three vertical dots in the top-right corner.
- Click Settings.
- In the left sidebar, scroll down and click About Chrome (or About Google Chrome).
- On that page, you’ll see something like:
Version 122.0.xxxx.xx (Official Build)
The number you see there is your current Chrome version, and Chrome will also auto-check for updates on that screen.
Method 2: Super-fast address bar trick
- Open Chrome.
- In the address bar, type:
chrome://version/
- Press Enter.
You’ll see a page with detailed info; the version line near the top shows your
main Chrome version (for example, 122.0.xxxx.xx).
Method 3: On Android or iOS
- Open the Chrome app.
- Tap the three dots in the top-right (or bottom-right on iOS).
- Tap Settings.
- Scroll down and tap About Chrome.
- The version will be listed there (for example,
Chrome 122.0).
Tiny extra: From the DevTools console (advanced)
If you’re in Chrome DevTools and want the version number via JavaScript, you can run:
js
navigator.appVersion.match(/.*Chrome\/([0-9\.]+)/)[1]
This will return the Chrome version string (like "122.0.6261.70").
TL;DR:
The easiest way: open Chrome → three dots → Settings → About Chrome → read
the version number shown at the top.
Information gathered from public forums or data available on the internet and portrayed here.