Apple Script

保存当前标签页的URL到Anybox

tell application id "cc.anybox.Anybox"
	save current tab
end tell

保存文字或链接到Anybox

tell application id "cc.anybox.Anybox"
	set input to "example text"
	save input
end tell

打开快速查找

tell application id "cc.anybox.Anybox"
	open Quick Find
end tell

打开快速保存

tell application id "cc.anybox.Anybox"
	open Quick Save
end tell

打开暂存箱

tell application id "cc.anybox.Anybox"
  open Stash Box
end tell

显示剪贴板内的文本统计数据

try
	set my_text to get the clipboard as text
on error
	set my_text to "Error. No text found in Clipboard"
	log my_text
	return
end try

tell application id "cc.anybox.Anybox"
	show text stats my_text with show result
end tell