将网页保存在桌面上并使用 Automator 将其标记为红色

将网页保存在桌面上并使用 Automator 将其标记为红色

在 Chrome 中,我使用CommandS保存网页和使用服务(Automator)创建的另一个单独的快捷方式在桌面上将文件标记为红色(对文件没有特异性.webloc)。

但是,我想用一个键盘快捷键(工作流或服务)来做到这一点:

  1. 将图标作为.webloc文件拖放到桌面上
  2. 将其标记为红色

我很想开始学习如何更有效地使用 Automator 完成这些任务,非常感谢任何帮助。

答案1

你可以为脚本指定快捷方式像这样:

tell application "Google Chrome" to tell tab 1 of window 1
    set u to URL
    set t to title
end tell
tell application "Finder"
    make new internet location file at desktop to u with properties {name:t}
    set label index of result to 2
end tell

或者使用

相关内容