raphsabb (owner)

Revisions

gist: 47525 Download_button fork
public
Public Clone URL: git://gist.github.com/47525.git
Embed All Files: show embed
gawker #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 
A google search into Gawker Media sites. Feel free to improve or send feedback.
 
*/
 
makeSearchCommand({
  name: "gawker",
  author: { name: "Raphael Sabbat", homepage: "http://raphsabb.blogspot.com"},
  help:
    'eg. <i>"gawker bmw"</i>' + '<br />' +
    'eg. <i>"gawker linux"</i>' + '<br />' +
    'eg. <i>"gawker olivia munn"</i>',
 
  url: "http://www.google.com/search?hl=en&q=gawker+AND+{QUERY}&btnG=Search",
  icon: "http://www.gawker.com/favicon.ico",
  description: "Perform a Google Search @<a href=\"http://www.lifehacker.com\">Gawker Media</a> for the given words.",
  
  preview: function(pBlock, directObj) {
    if (directObj.text)
      pBlock.innerHtml = "Searches Gawker Media for " + directObj.text;
    else
      pBlock.innerHTML = "Searches Gawker Media for the given words.";
  }
});