18 lines
420 B
AutoHotkey
18 lines
420 B
AutoHotkey
#Requires AutoHotkey v2
|
|
#SingleInstance Force
|
|
#HotIf WinActive("ahk_exe Telegram.exe")
|
|
Persistent
|
|
|
|
^v:: { ; On Ctrl+V
|
|
fixedText := RegExReplace(
|
|
A_Clipboard,
|
|
'(?:https?:\/\/)?(?:mobile\.)?(?:x|twitter)\.com\/(\w+)\/status\/(\d+)',
|
|
'https://fxtwitter.com/$1/status/$2',
|
|
&ReplacementCount,
|
|
)
|
|
if (ReplacementCount > 0) {
|
|
A_Clipboard := fixedText
|
|
}
|
|
Send "^v"
|
|
}
|