懶人複製法 for Firefox (AutoHotkey)
在ptt ezhotkey版看到的
原作者 ptt 的luke93
左鍵放開後自動複製
視情況修改 nViewAreaTop
#IfWinActive ahk_class MozillaUIWindowClass
~LButton Up::
nViewAreaTop := 118
CoordMode, Mouse, Relative
MouseGetPos, x, y,, sUnderMouseControl
; Test if the mouse event occurred in View area
if( y > nViewAreaTop )
{
OutputDebug, Firefox copy
Send ^c
}
Return
如有錯誤 歡迎指正