使用 AppleScript 或 Objective C 获取已安装的 Safari 版本

发布于 2024-12-01 01:15:56 字数 320 浏览 0 评论 0原文

如何查看 Mac 上安装的 safari 版本?我需要为 Safari 提供临时修复,因为我的应用程序无法在 Safari 5.0.6 和 5.1 上运行。那么我如何检测这两个版本的 safari...

我可以使用 webkit 找到它的版本,但基于此网站: http://en.wikipedia.org/wiki/Safari_version_history

Safari 5.0.6 具有与之前版本类似的 webkit...

How can I check the installed safari version on Mac? I need to provide temporary fix for Safari as my app didn't work on safari 5.0.6 and 5.1. So how can I detect these 2 version of safari...

i can find its version using webkit but based on this site: http://en.wikipedia.org/wiki/Safari_version_history

Safari 5.0.6 has the similar webkit as the previos version...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挥剑断情 2024-12-08 01:15:56

即使 Safari 没有运行,您也可以执行此操作...

get version of application "Safari"

You can do this even if Safari isn't running...

get version of application "Safari"
十秒萌定你 2024-12-08 01:15:56

如果 Safari 正在运行此 AppleScript 将获取版本:

tell application "Safari"
    set safariVersion to version
end tell

If Safari is running this AppleScript will get the version:

tell application "Safari"
    set safariVersion to version
end tell
灼疼热情 2024-12-08 01:15:56

您可以从 /Applications/Safari.app/Contents/version.plist 中读取版本。

You can read the version out of /Applications/Safari.app/Contents/version.plist.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文