If you are annoyed as much as I am by Binance inability to paste clipboard values into the order boxes, you're welcome. (Please do us all a favor and file a bug report too!)
On a Mac you can simply use an AppleScript to type everything that is on the clipboard for you. The script is this:
try
the clipboard as text
on error
set the clipboard to " "
end try
tell application "System Events"
keystroke (the clipboard as text)
end tell
- Create a new Quick Action in Automator.
- Input is "no input". Execute in "any application".
- Add a Run Applescript action, and paste the script above into it.
- Save the action, and remember its name.
- Now open System Preferences → Keyboard → Shortcuts.
- Under Services → General should be your new action. Double click the shortcut column next to it to assign a custom shortcut to this action.
It's a little slow, if you do it using macOS only. That's why I always always always recommend using Keyboard Maestro. (Yes, I'm very biased. Check out my Keyboard Maestro macros here, and my Markdown macros here.)