Last active
March 20, 2022 04:44
-
-
Save peterthehan/d34cf58363b52dceb0473022925dd804 to your computer and use it in GitHub Desktop.
Convenience script to copy-paste images between Chrome and Discord.
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
#NoEnv | |
#SingleInstance, Force | |
delay := 200 | |
return | |
#IfWinActive, ahk_exe chrome.exe | |
~RButton:: | |
Sleep, % delay | |
Send, y ; https://www.reddit.com/r/chrome/comments/aig340/chromes_hidden_context_menu_shortcuts/ | |
return | |
#IfWinActive | |
#IfWinActive, ahk_exe Discord.exe | |
~RButton:: | |
Sleep, % delay | |
Send, ^v | |
KeyWait, RButton, T0.5 | |
If ErrorLevel { | |
Send, {Enter} | |
} | |
return | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment