从 Applescript 在 Google Chrome 中打开 Ip
我一直在尝试让 applescript 在 Google Chrome 和 safari 中使用 shell 脚本打开 IP,但没有成功。到目前为止,我一直在尝试像这样的打开命令:
do shell script "open http://" & blockedIP
当我用阻塞的IP替换URL时,它会起作用,但是当我尝试使用IP时,它只会打开一个新选项卡,其中包含默认主页和地址栏中的IP。我还尝试了其他几种方法,但每种方法要么根本不起作用,要么与此方法相同。有人知道我该怎么做吗?
I've been trying to get applescript to open an ip using a shell script in both Google Chrome and safari, but alack no success. So far I've been trying the open command like this:
do shell script "open http://" & blockedIP
which works when I substitute blockedIP for a URL, but when I try and use an IP it just opens a new tab with the default homepage and the IP in the address bar. I've tried a couple other methods as well but each one either doesn't work at all or does the same as this one. Anyone know how I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
这不使用 shell 脚本来完成工作,而是直接使用 Safari AppleScripting(因为它是可编写脚本的。)
如果您想在 Google Chrome 上执行相同的操作,请使用:
Try this.
This doesn't use a shell script to do the work, it uses direct Safari AppleScripting (because it's scriptable.)
If you want to do the same on Google Chrome, then use: