/*         Author:       Twily                                                                 2015         Description:  Optional patch for using "!i" before (in front of) the search query string         Original:     http://twily.info/homepage#Firefox         Instructions: Replace the original 'handleQuery' function with the code below */   function handleQuery(e,q) { // Handle search query     var key=e.keyCode || e.which;       if(key==13) { // Enter         //var x=q.lastIndexOf("!");         var x=q.indexOf("!");           //if(x!=-1 && x>=q.length-2) {         if(x==0) {             for(var i=0;i