Search Keys For Google Patents
The Search Keys extension for Firefox is perhaps my favorite plugin. I tweaked it so it will work with Google Patent Search as well. The only additional code needed is in the searchkeys.js file:
{ name: "Google Patents", test: function (uri) { return uri.host.indexOf("google") != -1 && uri.path.substr(0,9) == "/patents?"; }, testLink: function (linkNode) { return (linkNode.className == "big"); } },
I added a new minor version number and posted it here for download. Hopefully the patch will be adopted upstream.