Firefox 用户 164195

关于我

开发者信息
名称 Firefox 用户 164195
注册时间 Nov. 16, 2017
开发的附加组件数量 0 个附加组件
开发的附加组件平均得分 尚无评分

我所发表的评价

Tab Wheel Scroll

评分5星,满分5星

SOLUTION FOR THE TIME BEING.

1) Get Autohotkey
2) Create the following script:

#IfWinActive ahk_class MozillaWindowClass
;MouseGetPos, [OutputVarX, OutputVarY, OutputVarWin, OutputVarControl, 1|2|3]
~WheelDown::
MouseGetPos X, Y
if ( X < 225 )
SendInput ^{Tab}
Return
~WheelUp::
MouseGetPos X, Y
if ( X < 225 )
SendInput ^+{Tab}
Return


Adjust the X value to the width of your vertical tab bar (if you are using a horizontal tab bar (you shouldn't), change to Y < 33 or similar. Auto-run the script with Windows. Voila! My life is complete again.