如果要建立的书签组在一个子目录里,还可以插入“Submenu”的名称,最后在“Menu Item”里输入书签的完整名字

最后按书签顺序将书签依次建立成Marco放入Group里即可。
在这里分享一个我的“强力书签组”最后一个功能书签,其实就是一个AppleScript,可以将当期Chrome网页转到Safari打开:
set list_Tabs to {}
tell application “Google Chrome”
set the_Tabs to (tabs of every window)
repeat with the_Tab in the_Tabs
set the_Items to (every item of the_Tab)
repeat with the_Item in the_Items
copy URL of the_Item to end of list_Tabs
end repeat
end repeat
end tell
tell application “Safari”
repeat with list_Tab in list_Tabs
set myTab to make new tab at end of tabs of window 1
set URL of myTab to list_Tab
end repeat
end tell
社区交流