Apple Script
Save Current Tab to Anybox
tell application id "cc.anybox.Anybox"
save current tab
end tell
Save Text or URL to Anybox
tell application id "cc.anybox.Anybox"
set input to "example text"
save input
end tell
Open Quick Find
tell application id "cc.anybox.Anybox"
open Quick Find
end tell
Open Quick Save
tell application id "cc.anybox.Anybox"
open Quick Save
end tell
Open Stash Box
tell application id "cc.anybox.Anybox"
open Stash Box
end tell
Show Text Stats for Text in Pasteboard
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