我如何知道我正在运行哪个 Google Chrome 频道?

hip*_*ail 32 google-chrome version

有没有从谷歌Chrome浏览器中的方式来知道我是否在运行stablebetadev频道?

我在最近的dev版本中遇到了问题,并决定回到stable. 现在我想确保它有效。

在“关于谷歌浏览器”中说

14.0.835.186 米

这是否m代表stable也许?

顺便说一句,我在 Windows 上,但我认为有一种独立于平台的检查方式?

Jou*_*eek 32

试试 chrome://version/

普通 Chrome 说:

Google Chrome   14.0.835.186 (Official Build 101821) m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default
Run Code Online (Sandbox Code Playgroud)

Chrome Beta 说:

Google Chrome   14.0.835.186 (Official Build 101821) beta-m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default
Run Code Online (Sandbox Code Playgroud)

开发 说:

Google Chrome   14.0.835.186 (Official Build 101821) dev-m
OS  Windows
WebKit  535.1 (branches/chromium/835@94713)
JavaScript  V8 3.4.14.21
Flash   10,3,183,10
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome\User Data\Default
Run Code Online (Sandbox Code Playgroud)

金丝雀 说:

Google Chrome   16.0.891.0 (Official Build 102650) canary
OS  Windows
WebKit  535.5 (@95897)
JavaScript  V8 3.6.4
Flash   11,0,1,148
User Agent  Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.5 (KHTML, like Gecko) Chrome/16.0.891.0 Safari/535.5
Command Line    "C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\Application\chrome.exe" --flag-switches-begin --enable-print-preview --flag-switches-end
Executable Path C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\Application\chrome.exe
Profile Path    C:\Documents and Settings\geek\Local Settings\Application Data\Google\Chrome SxS\User Data\Default
Run Code Online (Sandbox Code Playgroud)

常规是 m,Dev 是 dev-m,canary 是金丝雀


Jin*_*Jin 12

根据官方 Chrome Release 博客,您的版本是最新的稳定版本。我认为如果版本没有说明betaor dev,则它正在使用stable频道。

一点谷歌搜索给出了以下m标志的解释。

// Return a human readable modifier for the version string, e.g. 
// the channel (dev, beta, stable). Returns true if this operation 
succeeded, 
// on success, channel contains one of "", "unknown", "dev" or 
"beta" (unless 
// it is a multi-install product, in which case it will return "m", 
// "unknown-m", "dev-m", or "beta-m"). 
static bool GetChromeChannel(bool system_install, std::wstring* 
channel); 
Run Code Online (Sandbox Code Playgroud)

来源

“m”仅表示您在 C:\Users\username\AppData\Local\Google\Chrome\Application 中安装了多个版本的 Chrome。如果您没有下载最新版本而是更新到最新版本,则您可能拥有多个版本的 Chrome。如果安装失败,新版本不会取代旧版本。所以本质上,当Chrome检测到你有多个版本的Chrome时,会在【关于谷歌浏览器】窗口的版本号后面显示“m”。

来源(在评论中)