Firefox에서 현재 페이지를 여는 플러그인 또는 Chrome 용 북마크가 있습니까?
최신 정보:
제안 해 주셔서 감사합니다. 내 AutoHotKey 스크립트는 다음과 같습니다 (클립 보드를 엉망으로 만들지 않습니다 ...) :
#IfWinActive ahk_class Chrome_WindowImpl_0
^+f:: ;Ctrl+Shift+F
ControlGetText, URLbartxt, Chrome_AutocompleteEditView1
RegExMatch(URLbartxt,"^((ht|f)tps?|file)://\S+$",URL)
if URL <>
{
Run "C:\Program Files\Mozilla Firefox 3.6 Beta\firefox.exe" %URL%
}
return
#IfWinActive
하지만 여전히 Chrome 임베디드 솔루션을 찾고 있습니다 ...