US Trends

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

  1. Open Google Chrome.
  2. Click the three vertical dots in the top-right corner.
  3. Click Settings.
  4. In the left sidebar, scroll down and click About Chrome (or About Google Chrome).
  5. 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

  1. Open Chrome.
  2. In the address bar, type:
    • chrome://version/
  3. 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

  1. Open the Chrome app.
  2. Tap the three dots in the top-right (or bottom-right on iOS).
  3. Tap Settings.
  4. Scroll down and tap About Chrome.
  5. 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.