2017-02-20 2 views
0

Firefox에서 두 개의 바로 가기를 실행하고 싶습니다. 첫 번째 것은 Web Developer Addon의 사용자 정의 액션 중 하나입니다. 두 번째는 페이지를 새로 고치는 간단한 F5입니다. 단일 명령이나 버튼 누름 등을 사용하여 실행하는 방법이 있습니까? 어쩌면 자바 스크립트 북마크 수 있습니다. 나는 그것에 대해 아무 것도 모른다. 그래서 모든 도움이 감사하게 여긴다.즉시 Firefox에서 두 개의 바로 가기 명령을 실행하십시오.

고맙습니다.

답변

0

한 번 파이어 폭스에서 두 개의 바로 가기 명령을 실행하십시오.

이 Autohotkey 스크립트를 사용할 수 있습니다.

;GroupAdd, Browser, ahk_class Chrome_WidgetWin_1 ; Chrome or Iron 
;GroupAdd, Browser, ahk_class IEFrame   ; Internet Explorer 
GroupAdd, Browser, ahk_class MozillaWindowClass ; FireFox 
;GroupAdd, Browser, ahk_class ApplicationFrameWindow ; Edge 

; Click on the keyboard Ctrl+Shift+e 
; if Firefox browser is active then execute the two Shortcuts Commands. 
^+e:: 

; [+ = Shift] [! = Alt] [^ = Ctrl] [# = Win] 
If WinActive("ahk_group Browser") 
{ 
send ^+i ;The first shortcut Command = open the inspector 
sleep 150 
send {f5} ;The second shortcut Command = Refresh the Page in Browser 
} 
return 

esc::exitapp