如何检测安装的Chrome版本?
我正在开发一个 Chrome 扩展程序,我想知道是否有一种方法可以检测用户正在使用哪个版本的 Chrome?
I'm developing a Chrome extension and I'm wondering is there a way that I can detect which version of Chrome the user is using?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以整数形式获取 Chrome 的主要版本:
我已经更新了原始答案,以便它不会在其他浏览器中引发异常,并且不会使用已弃用的功能。
您还可以设置
清单中的minimum_chrome_version
,不允许使用旧版本的用户安装它。Get major version of Chrome as an integer:
I've updated the original answer, so that it does not throw an exception in other browsers, and does not use deprecated features.
You can also set
minimum_chrome_version
in the manifest to not let users with older versions install it.这是一个基于 @serg 的答案的版本,它提取版本号的所有元素:
返回的对象中元素的命名基于 此 约定,尽管您当然可以将其改编为基于 这个 代替。
Here is a version, based on the answer from @serg, that extracts all of the elements of the version number:
The naming of the elements in the object that is returned is based on this convention, though you can of course adapt it to be based on this instead.
替代的现代解决方案只需检查
navigator.userAgentData.brands
例如:
Alternative modern solution can be just check the
navigator.userAgentData.brands
E.g.:
要获取完整版本(不含 0.0.0),请使用以下命令:
To get the full version (without 0.0.0) use this: