public
Description: A Bookmarklet for your browser that makes searching of GitHub only one click away
Homepage: http://douglasfshearer.com/blog/announcing-github-bookmarklet
Clone URL: git://github.com/dougal/github-bookmarklet.git
github-bookmarklet / github_bookmarklet.js
100644 11 lines (9 sloc) 0.34 kb
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Douglas F Shearer 2008
// Available under the MIT Licence.
// Install at: http://douglasfshearer.com/blog/announcing-github-bookmarklet
//
// Compile command: perl make_bookmarklet.pl github_bookmarklet.js
 
var query = prompt("Search GitHub.com");
if (query) {
  window.location = "http://github.com/search?q=" + query;
}