:User:Merzul/monobook.js

// This script adds search links to the toolbox.

$(function () {

if (wgCanonicalNamespace == "Special")

return; // no links for special pages

var title = wgTitle;

if (wgCanonicalNamespace != "")

title = title.replace(/^.*\//, ""); // subpage name only

var query = encodeURIComponent('"'+title+'" -Wikipedia' );

mw.util.addPortletLink('p-tb', 'http://www.google.com/search?&q='+query,

'Web search', 't-googlesearch', 'Search Google for "'+title+'"', 'W');

mw.util.addPortletLink('p-tb', 'http://news.google.com/archivesearch?&as_price=p1&as_src=-newswire+-wire+-presswire+-PR+-press+-release&q='+query,

'News search', 't-googlenewssearch', 'Search Google News Archive for "'+title+'"', 'N');

mw.util.addPortletLink('p-tb', 'http://books.google.com/books?&as_brr=3&q='+query,

'Books search', 't-googlebookssearch', 'Search Google Books for "'+title+'"', 'B');

mw.util.addPortletLink('p-tb', 'http://scholar.google.com/scholar?&q='+query,

'Scholar search', 't-googlescholarsearch', 'Search Google Scholar for "'+title+'"', 'S');

});