Mostly self-explanatory... Every time I perform a Google search I would like it to display results using the "Past Year" option from the "More Search Tools" menu on the left by default.
My main search method is the Girefox Google Search plugin, so a solution involving that would probably be best.
the solution I created thanks to the answers and commenters:
I created the following, named it google-past-year.xml, and dropped it in the searchplugins directory of my firefox profile dir. Restarted the browser and it works like a charm!
The major element here is the token tbs=qdr:y. I don't know what tbs stands for, but I assume qdr:y means "Qualify Date Range":"one Year"
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
<os:ShortName>googayear</os:ShortName>
<SearchForm>http://www.google.com/search</SearchForm>
<os:Url type="text/html" method="GET" template="http://www.google.com/search?q={searchTerms}&hl=en&safe=off&output=search&tbs=qdr:y">
</os:Url>
</SearchPlugin>
update:
I found the xml for the standard google plugin in my Firefox.app. So I was able to fix some issues with the above version (no icon, no inline suggestions) by using theirs as a template and adding my own options. Then I went to submit it to the mycroft opensearch project and i used their awesome generator to refine it even more. If interested, the plugin can be found at:
http://mycroft.mozdev.org/search-engines.html?name=Google+%28Past+Year%2C+No+SafeSearch%29