- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[Autohotkey] 크롬 브라우저 5분마다 새로고침 하기 본문
크롬 브라우저에서 어느 웹싸이트의 로그인을 유지하기 위해 5분마다 새로고침하는 스크립트를 만들었다.
;https://autohotkey.com/board/topic/3356-webpage-refresh/
Browser = Microsoft Internet Explorer
;Browser = Mozilla Firefox
SetTitleMatchMode, 2
Menu, TRAY, Tip, Chrome Refresher
Gui, Add, Text, x6 y7 w50 h20, Seconds:
Gui, Add, Edit, x56 y7 w60 h20 +Left vpreSeconds, 300
Gui, Add, Button, x6 y37 w110 h30 gStart, Set Refesh Rate
Gui, Show, x400 y326, Chrome Refresher
Return
Start:
{
Gui, Submit
Seconds := preSeconds * 1000
SetTimer, Refresh, %Seconds%
return
}
Refresh:
{
;ControlSend, , {F5}, %Browser%
; https://stackoverflow.com/questions/22314925/refresh-the-top-active-tab-with-autohotkey
WinActivate,ahk_class Chrome_WidgetWin_1
ControlSend,,{F5},ahk_class Chrome_WidgetWin_1
return
}
GuiClose:
ExitApp
Gui_Refresh_Chrome Refresher.ahk
'Autohotkey' 카테고리의 다른 글
[Autohotkey] windows 32 message 캡쳐링 하는 툴 (0) | 2017.11.12 |
---|---|
[AutoHotKey] 한글 입력하기 (0) | 2017.11.09 |
[Autohotkey] GUI 프로그래밍 (0) | 2017.11.08 |
AutoHotKey 설정 및 인코딩 변환 (0) | 2017.11.08 |
[Autohotkey] 네이버 자동로그인 스크립트 (0) | 2017.11.08 |