Last active
September 23, 2017 18:53
-
-
Save abhivaikar/e82deb0ce08f4bad21f091240e3d3fad to your computer and use it in GitHub Desktop.
bookmarklet code for quick google
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { var googleBaseURL = "https://www.google.co.in/search?q="; var query = prompt("Google what?"); if(query) {window.open(googleBaseURL+query); } else return })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment