V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
bilibiliLM
V2EX  ›  问与答

傲游浏览器按住右键+滚轮切换标签页如何在 chrome 实现?

  •  
  •   bilibiliLM · 2018-06-10 13:51:04 +08:00 · 1632 次点击
    这是一个创建于 2149 天前的主题,其中的信息可能已经有所发展或是发生改变。

    尝试使用 autohotkey 模拟 CTRL+tab/CTRL+shift+tab,失败

    鼠标重新映射工具(x-mouse button control) ,一次只能选择一个按键进行映射

    如果有 Chrome 现成的插件自然是最好不过了 //

    3 条回复    2018-06-11 16:19:08 +08:00
    noe132
        1
    noe132  
       2018-06-10 14:08:11 +08:00   ❤️ 1
    RButton & WheelDown::
    IfWinActive, ahk_exe chrome.exe
    {
    Send ^{Tab}
    }
    return

    RButton & WheelUP::
    IfWinActive, ahk_exe chrome.exe
    {
    Send ^+{Tab}
    }
    return

    ahk 没有问题。
    noqwerty
        2
    noqwerty  
       2018-06-10 14:12:40 +08:00
    推荐一波 WGestures,全局鼠标手势。
    bilibiliLM
        3
    bilibiliLM  
    OP
       2018-06-11 16:19:08 +08:00
    @noe132 朋友是什么系统呀,还有 AHK 版本,。我试了还是不行。不知道是不是有软件冲突
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1171 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 45ms · UTC 18:16 · PVG 02:16 · LAX 11:16 · JFK 14:16
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.