Search Google with a bookmarklet, easily changeable link, change where it says var a="https://google.com?q=";
Code:
javascript:
var a="https://google.com/search?q=";
var b=prompt("What would you like to search on Google?", "Search");
if(b==="")
{
alert("invalid response");
}
else if (b===" ")
{
alert("invalid response");
}
else if (b!=null)
{
open(a+encodeURI(b));
}
Bookmarklet:
javascript:var a="https://google.com/search?q="; var b=prompt("What would you like to search on Google?", "Search"); if(b===""){alert("invalid response");}else if (b===" "){alert("invalid response");} else if (b!=null){open(a+encodeURI(b));}