I switched from Firefox to Chrome as my go-to browser some months ago and there is one piece of functionality that still pesters me. Seems trivial/ignorable but this one is driving me nuts little by little...

I like to be able to highlight text, click CTRL-F, and have the find dialogue come up with the highlighted text prepopulated. Chrome (14.0.+) just shows my last search prepopulated. Is there any extension to help me?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
+25

If you are on Windows you can use the following Autohotkey script:

#SingleInstance force
SetTitleMatchMode 2
#IfWinActive ,Chrome
^f::Send ^c^f^v^a

When pressing Ctrl+F this hotkeys sends Ctrl+C, Ctrl+F, Ctrl+V and Ctrl+A So it copies, search, paste and select all the copied text in the search box.

I guess something better could be done, checking the clipboard, but that's out of my Autohotkey knowledge :P

I have uploaded a compiled script if you don't have Autohotkey

link|improve this answer
feedback

I don't think that its possible, your best bet would be to use

Ctrl-C then Ctrl-F then Ctrl-V

Theres also Google Quickscroll that will show you that'll let you jump to a relevant paragraph from a google search Link

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.