IMDB to Wikipedia Links

By Avindra V.G. Last update Jun 21, 2009 — Installed 162 times. Daily Installs: 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name           IMDB to Wikipedia Links
// @namespace      #aVg
// @description    Adds wikipedia links to IMDB movie pages.
// @include        http://www.imdb.com/title/*
// @version        0.1.1
// ==/UserScript==
var wiki=document.createElement("a");
wiki.textContent = "wikipedia";
wiki.setAttribute("style", "margin-left: 7px;font-size:18px;");
wiki.href = "http://www.google.com/search?q=\"" + document.title.replace(/ \(\d+\)/,"") + "\" movie site:wikipedia.org&btnI";
document.getElementById("tn15title").childNodes[1].appendChild(wiki);