‘Results per page:,’ for example.

link|improve this question
Please elaborate a bit. I don't understand what you're trying to do. – Doug Harris Sep 14 '09 at 11:39
Yes, Please elaborate in detail. – TuxGeek Sep 14 '09 at 14:22
feedback

1 Answer

Alternate solution to using Greasemonkey/Javascript

From your previous question, I get the impression you do alot of advanced searching. Depending on how similar each of your searches are, it may be easier to use GET arguments used by Google in their URLs and create a Firefox quick search.

Google URL

http://google.com.au/search?hl=en&as_q=Super+User&num=50&as_filetype=pdf&as_sitesearch=superuser.com

as_q = your keywords  
num = results per page  
as_filetype = filetype  
as_sitesearch = a site to search
etc..

Example

A quick search which searches superuser.com and displays 25 results per page would be:

http://google.com.au/search?hl=en&as_q=%s&num=25&as_sitesearch=superuser.com

To create a quick search:

  1. 'Organise Bookmarks'(Ctrl + Shift + B)
  2. Right click > 'New Bookmark'
  3. Name your quick search bookmark
  4. Enter the URL of your search string (example above) as the 'location' - include %s where your search string is to be placed in the URL
  5. Enter a keyword to trigger the search
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.