Facebook
From Small Goose, 3 Years ago, written in Autohotkey.
Embed
Download Paste or View Raw
Hits: 112
  1. ; 最初のテキストフィールドに移動
  2. #If, WinActive("ahk_class Chrome_WidgetWin_1")
  3.   ^+u::
  4.     ; ホールド対策
  5.     KeyWait, Ctrl, Up
  6.     KeyWait, Shift, Up
  7.     stash := ClipBoardAll
  8.     ; [type='text']がないとGoogleで反応しないため、ここでは明示的にsearchとtextを指定
  9.     ClipBoard := "element = document.querySelector(""input[type='search'], input[type='text']"");element.select();element.scrollIntoView();"
  10.     ClipWait, 1
  11.     Send, ^l
  12.     ; "javascript:"は貼り付けできない
  13.     Send, {vkF2}{vkF3}javascript:
  14.    Sleep, 100
  15.     Send, ^v
  16.     Sleep, 100
  17.     Send, {Enter}
  18.     Sleep, 10
  19.     ClipBoard := stash
  20.     stash := ""
  21.   Return
  22. #If
  23.  

Replies to Untitled rss

Title Name Language When
Re: Untitled Soft Mockingbird autohotkey 3 Years ago.
captcha