2011-08-26
AutoHotkeyを使ってChromeのタブ周りの操作を快適にする
注意:chrome19で Chrome_WidgetWin_0 から Chrome_WidgetWin_1 に変更されました。
ダブル中クリックでchromeのタブを復元する設定を書いた。
AutoHotkeyを使ってChromeのタブ切り替えをマウスホイールで行う - Cherenkovの暗中模索にっき の設定と合わせて
#IfWinActive ahk_class Chrome_WidgetWin_0
;mouse wheel to tab switch
~WheelUp::
MouseGetPos, x, y
if (y < 45) {
send, ^{PgUp}
}
return
~WheelDown::
MouseGetPos, x, y
if (y < 45) {
send, ^{PgDn}
}
return
;double middle click to reopen closed tab
~MButton::
MouseGetPos, x, y
if (y < 45) {
if ((A_PriorHotKey = A_ThisHotKey) && (A_TimeSincePriorHotkey < 300)) {
send ^+t
}
}
return
#IfWinActive
トラックバック - http://d.hatena.ne.jp/Cherenkov/20110826/p1
リンク元
- 11252 http://pipes.yahoo.com/pipes/pipe.info?_id=1e14307d7ba3f5ae83eb5d5f236da332
- 4900 http://oshiete.goo.ne.jp/qa/6235164.html
- 1317 http://userscripts.org/scripts/show/55626
- 558 http://q.hatena.ne.jp/1250002653
- 456 http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&sqi=2&ved=0CCMQFjAA&url=http://d.hatena.ne.jp/Cherenkov/20110112/p1&ei=XsgYT9KBGsLOmAXnyp2UCg&usg=AFQjCNHp-7yBk2mF_fBC26U6E7XkIbsTSw&sig2=Sj3dxj0PbIBUf5GUIaC5iw
- 432 http://www.google.co.jp/imgres?imgurl=http://cdn-ak.f.st-hatena.com/images/fotolife/C/Cherenkov/20090329/20090329061818.jpg&imgrefurl=http://d.hatena.ne.jp/Cherenkov/200903&usg=__XRuyTjP_DeRvQfkC3NMCKvUfCE4=&h=232&w=400&sz=32&hl=ja&start=46&zoom=1&tbnid=S
- 313 http://www.google.co.jp/url?sa=t&rct=j&q=ツイッター つぶやき 一斉削除&source=web&cd=3&ved=0CCsQFjAC&url=http://d.hatena.ne.jp/Cherenkov/20
- 302 http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1247889037
- 273 http://www.google.co.jp/url?sa=t&rct=j&q=twitter delete my tweet&source=web&cd=1&ved=0CB0QFjAA&url=http://d.hatena.ne.jp/Cherenkov/20090813/p1&ei=BCCgTp61I_DzmAWNrNzeBA&usg=AFQjCNHgVr0dflYyfXW2l3ZNeYnZV4bFQg&sig2=wAc-PXfDlu6K3Kec0WC88A
- 243 http://ti.masuidrive.jp/topic.php?id=7
