// ==UserScript==
// @name IMDb Pirate Downloads
// @namespace http://r3bify.info
// @version 1.0
// @description Find IMDb Movies and TV Shows on The Pirate Bay and RARBG
// @author R3bify
// @icon http://r3bify.info/favicon.ico
// @match *://www.imdb.com/title/*
// @grant none
// @downloadURL https://update.greasyfork.icu/scripts/16022/IMDb%20Pirate%20Downloads.user.js
// @updateURL https://update.greasyfork.icu/scripts/16022/IMDb%20Pirate%20Downloads.meta.js
// ==/UserScript==
var href = window.location.href.split('/');
var imdbtt = href[href.length-2];
var imdbLink = "http://www.omdbapi.com/?i=" + imdbtt + "&plot=short&r=json";
var xhr = new XMLHttpRequest();
xhr.open('GET', imdbLink);
xhr.onload = function ()
{
var imdbJSON = window.JSON.parse(xhr.responseText);
var urls = '
Search RARBG: By IMDb Link|' +
'By Title|' +
'By Title and Year' +
'
Search on The Pirate Bay: ' +
'By Title|' +
'By Title and Year';
document.getElementsByClassName("subtext")[0].innerHTML += urls;
};
xhr.send();