Created
November 9, 2017 07:38
-
-
Save Anks/0f6e6a1b54610f18c4446f09c592f710 to your computer and use it in GitHub Desktop.
Applescript to 'type' your clipboard into textfields (useful for websites where they block paste)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on run | |
tell application "System Events" | |
keystroke (the clipboard) | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment