Existe-t-il un plugin ou un bookmarklet pour Chrome qui ouvre la page actuelle dans Firefox?
Mise à jour:
Merci Phoshi pour la suggestion. Voici mon script AutoHotKey (sans jouer avec le presse-papiers ...):
#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
Mais je cherche toujours une solution embarquée Chrome ...