如何跟踪打开的网页

发布于 2024-09-16 19:40:53 字数 83 浏览 7 评论 0原文

只是想知道是否有办法跟踪用户通过 Cocoa 或 Webkit 浏览的网站?

有点像 TrackTime.app?

谢谢

Just wondering if there's a way to keep track of what website the user is browsing to via Cocoa or Webkit?

Sort of like the TrackTime.app?

Thanks

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

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

发布评论

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

评论(2

不醒的梦 2024-09-23 19:40:53

我正在开发一个没有计时器的时间跟踪应用程序,名为 Lapsus

Mike 是正确的 - 答案就在下面的 AppleScript 中:

tell application "Safari"
    URL of current tab of window 1
end tell   

我现在正在我的应用程序中执行此操作,它的工作方式就像一个魅力。

如果您像我一样构建 Cocoa 应用程序,则可以使用 NSAppleScript、脚本桥或更理想地使用 AppScript

我首先检查窗口 1 是否存在,但如果您想将此脚本作为一个脚本运行,您可能需要用 @try @catch 块包围它以捕获 NSAppleScript 抛出的任何异常。

I'm developing a time tracking app without timers called Lapsus.

Mike is correct - the answer lies in the following AppleScript:

tell application "Safari"
    URL of current tab of window 1
end tell   

I'm doing this right now in my app and it works like a charm.

If you're building a Cocoa app as I am, you can execute this with NSAppleScript, the Scripting Bridge or, more ideally, with the Objective C bindings for AppScript.

I check if window 1 exists first, but if you want to run this script as one, you might want to surround it with a @try @catch block to catch any exceptions NSAppleScript throws.

两个我 2024-09-23 19:40:53

嗯,这与 WebKit 无关。您必须使用 AppleScript 或类似的脚本来跟踪 Safari 的动态。或者,也许能够监视其磁盘上的历史存储。

Well this has nothing to do with WebKit. You'd have to use AppleScript or similar to track what Safari's up to. Alternatively, might be able to monitor it's history storage on-disk.

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