Hello,
I have a Safari Extension called Shortshare (great extension btw check if out if you haven't https://josten.io/project/shortshare.html)
I'd like to make a custom Shortcut to trigger it.
I guess AppleScript is the way to go as seen here https://bit.ly/3yT0rmW
This is what the user is using to custom shortcut his own extension:
tell application "System Events"
tell process "Safari"
set extVar to "Recent Tab List"
tell first UI element of last group of last toolbar of first window
click (first button where its description = extVar)
end tell
end tell
end tell
Does anyone know how i could modify the code above to trigger the Shortshare extension?
Thanks
Nick
I have a Safari Extension called Shortshare (great extension btw check if out if you haven't https://josten.io/project/shortshare.html)
I'd like to make a custom Shortcut to trigger it.
I guess AppleScript is the way to go as seen here https://bit.ly/3yT0rmW
This is what the user is using to custom shortcut his own extension:
tell application "System Events"
tell process "Safari"
set extVar to "Recent Tab List"
tell first UI element of last group of last toolbar of first window
click (first button where its description = extVar)
end tell
end tell
end tell
Does anyone know how i could modify the code above to trigger the Shortshare extension?
Thanks
Nick