| Script Summary: Shows more extensions on https://addons.mozilla.org/ by default. |
this script has 1 topic, 12 posts |
This script has no reviews. |
Handled items
- Searchboxes on AMO
- Navigation through categories on the site
Solution for searchplugin
This script won't change number of results shown by the searchplugin located in browser's searchbar. But you can edit source code of the searchplugin (look in profile folder/searchplugins for
mozilla-add-ons.xml).
If you change:
<os:Url type="text/html" method="GET" template="http://addons.mozilla.org/search/?q={searchTerms}">
</os:Url>
into:
<os:Url type="text/html" method="GET" template="http://addons.mozilla.org/search/">
<os:Param name="q" value="{searchTerms}"/>
<os:Param name="show" value="50"/>
</os:Url>
the searchplugin will show 50 results, too.
Tested with
- Firefox 2.0 and above

