마우스 휠을 사용하여 Google 크롬에서 탭을 전환하려면 어떻게 해야 합니까?

마우스 휠을 사용하여 Google 크롬에서 탭을 전환하려면 어떻게 해야 합니까?

집에서는 Fedora 17을 실행하고 있으며 탭 표시줄 위로 마우스를 가져가는 동안 마우스 휠을 사용하여 열려 있는 탭을 빠르게 검색하는 데 익숙해졌습니다. 그것은 지금 나에게 매우 자연스러운 몸짓이다.

적어도 일주일에 한 번 직장에서(보통 월요일) MacBook Pro에서 실행되는 크롬에서 동일한 기술을 사용하려고 시도하지만 탭이 움직이지 않습니다. 이것이 나를 미치게 만들기 시작했습니다.

스크롤 휠을 사용하여 OSX용 Google 크롬의 탭을 변경할 수 있는 솔루션이 있는 사람이 있나요?

(다음 Google 코드 스레드를 찾았지만 제안된 수정 사항은 내가 알 수 있는 한 문제를 해결하지 못합니다.http://code.google.com/p/chrome-convenience-extension/issues/detail?id=31)

답변1

Google 그룹스 스레드에서 해결책을 찾았습니다. 다음 스크립트와 함께 AutoHotKey를 사용하십시오.

;; Wheel Scroll Tabs for Google Chrome 

#IfWinActive ahk_class Chrome_WidgetWin_1 
 ~$WheelDown:: 
 ~$WheelUp:: 
    MouseGetPos,, yaxis 
    IfGreater,yaxis,23, Return 
    IfEqual,A_ThisHotkey,~$WheelDown, Send ^{PgDn} 
                                 Else Send ^{PgUp} 
Return 
#IfWinActive

Chrome_WidgetWin_1참고: 그것이 나에게 효과적이었기 때문에 으로 변경했습니다 . 그래도 작동하지 않으면 다음으로 변경해보십시오.Chrome_WidgetWin_0

원천

답변2

확장크롬 도구 상자당신이 관심을 가질 수 있는 내용:

Chrome 도구 상자 옵션

OSX에서는 테스트하지 않았지만 Windows 7에서는 작동하며 호환성 문제가 없어야 합니다.

답변3

Chrome 32 이상을 사용하는 경우 AutoHotKey(컴파일된 스크립트)를 사용하여 이 솔루션을 확인하세요. Chrome 도구 상자는 31 이상의 Chrome에서 작동하지 않습니다.

https://plus.google.com/115670442023408995787/posts/WYPqqk2j9UB

또는 직접 사용:

; Mouse Wheel Tab Scroll 4 Chrome
; -------------------------------
; Scroll though Chrome tabs with your mouse wheel when hovering over the tab bar.
; If the Chrome window is inactive when starting to scroll, it will be activated.

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn   ; Enable warnings to assist with detecting common errors.
#SingleInstance force   ; Determines whether a script is allowed to run again when it is already running.
#UseHook Off    ; Using the keyboard hook is usually preferred for hotkeys - but here we only need the mouse hook.
#InstallMouseHook
#MaxHotkeysPerInterval 1000 ; Avoids warning messages for high speed wheel users.

SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
Menu, Tray, Tip, Mousewheel tab scroll for Chrome (1.0.3)

WheelUp::
WheelDown::
    MouseGetPos,, ypos, id
    WinGetClass, class, ahk_id %id%
    If (ypos < 45 and InStr(class,"Chrome_WidgetWin"))
    {
        IfWinNotActive ahk_id %id%
            WinActivate ahk_id %id%
        If A_ThisHotkey = WheelUp
            Send ^{PgUp}
        Else
            Send ^{PgDn}
    }
    Else
    {
        If A_ThisHotkey = WheelUp
            Send {WheelUp}
        Else
            Send {WheelDown}
    }
    Return

답변4

Windows 사용자를 위한 Chrome 확장 프로그램이 있습니다.자동제어브라우저에 이 기능을 추가하는 것입니다.
지침은 다음과 같습니다.
https://www.autocontrol.app/hover-sensitive-shortcuts#scrollwheel-on-tabs

마우스가 탭 표시줄 위에 있을 때, 전체 제목 영역 위에 있을 때, 브라우저 창 위나 원하는 곳에 있을 때 스크롤 휠을 사용하여 탭을 전환할 수 있습니다.
또한 스크롤 휠을 CTRL, SHIFT, ALT또는 기타 마우스 버튼이나 생각할 수 있는 거의 모든 조합과 결합할 수 있습니다. 내가 본 다른 어떤 앱보다 구성 가능성이 더 높습니다.

관련 정보