如何跟踪打开的网页
只是想知道是否有办法跟踪用户通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在开发一个没有计时器的时间跟踪应用程序,名为 Lapsus。
Mike 是正确的 - 答案就在下面的 AppleScript 中:
我现在正在我的应用程序中执行此操作,它的工作方式就像一个魅力。
如果您像我一样构建 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:
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.
嗯,这与 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.