Skip to content

Instantly share code, notes, and snippets.

@jaymcgavren
Created July 29, 2009 07:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaymcgavren/157908 to your computer and use it in GitHub Desktop.
Save jaymcgavren/157908 to your computer and use it in GitHub Desktop.
Enhanced Google Search for Firefox
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
<ShortName>Jay's Search</ShortName>
<Description>Google search with 100 results per page and keyboard shortcuts</Description>
<InputEncoding>UTF-8</InputEncoding>
<Url type="application/x-suggestions+json" method="GET" template="http://suggestqueries.google.com/complete/search?output=firefox&amp;client=firefox&amp;hl={moz:locale}&amp;q={searchTerms}&amp;num=100&amp;esrch=BetaShortcuts"/>
<Url type="text/html" method="GET" template="http://www.google.com/search">
<Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/>
<Param name="aq" value="t"/>
<!-- Dynamic parameters -->
<Param name="rls" value="{moz:distributionID}:{moz:locale}:{moz:official}"/>
<Param name="num" value="100"/>
<Param name="esrch" value="BetaShortcuts"/>
<MozParam name="client" condition="defaultEngine" trueValue="firefox-a" falseValue="firefox"/>
</Url>
<SearchForm>http://www.google.com/firefox</SearchForm>
</SearchPlugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment