มีปลั๊กอินหรือ bookmarklet สำหรับ Chrome ที่เปิดหน้าปัจจุบันใน Firefox หรือไม่?
ปรับปรุง:
ขอบคุณ Phoshi สำหรับคำแนะนำ นี่คือสคริปต์ 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 อยู่ ...