By vzjrz
—
Last update
Jun 28, 2008
—
Installed
1,871 times.
// ==UserScript==
// @namespace whatisthis?
// @name Google in Wikipedia
// @description Inserts links to Google web and images searches related to the Wikipedia Articles
// @include http://*.wikipedia.org/wiki/*
// ==/UserScript==
var para=document.getElementsByTagName('h3');
//get url
var fullurl = window.location.href;
var head = fullurl.replace(fullurl.substring(0,fullurl.search(/org/)+9) , "");
//get rid of the underscores
head = head.replace(/_/g , " ");
head = head.replace(/[^a-zA-Z ]/g ,"");
head = head.replace(/film/ , "")
//write everthing to page
para[0].innerHTML=
//Search engines
'Search: '+
'<a href="http://www.mininova.org/search/'+head+'/seeds">Mininova</a>'+
'<a href="http://www.torrentz.com/search?q='+head+'"> Torrentz</a>'+
'<a href="http://www.imdb.com/find?s=all&q='+head+'"> IMDb</a>'+
'<a href="http://search.ebay.com/search/search.dll?from=R40&_trksid=m37&satitle='+head+'"> Ebay</a>'+
'<a href="http://www.google.com/search?hl=en&lr=&q='+head+'&btnG=Search"> Google</a>'+
'<a href="http://images.google.com/images?q='+head+'&btnG=Search+Images&gbv=2"> Images</a>'+
'<a href="http://video.google.com/videosearch?q='+head+'&hl=en"> Videos</a>'+
'<a href="http://www.last.fm/music/?q='+head+'"> Music</a><br><br>'+
para[0].innerHTML;