// ==UserScript== // @name IMDb Pirate Downloads // @namespace http://r3bify.info // @version 0.8 // @description Find IMDb Movies and TV Shows on The Pirate Bay and RARBG // @author R3bify // @icon http://r3bify.info/favicon.ico // @match http*://www.imdb.com/title/* // @grant none // @downloadURL none // ==/UserScript== var href = window.location.href.split('/'); var imdbLink = href[href.length-2]; xmlhttp = new XMLHttpRequest(); xmlhttp.open("GET", 'http://www.omdbapi.com/?i='+imdbLink+'&plot=short&r=json', true); xmlhttp.send(); var imdbJSON = JSON.parse(xmlhttp.responseText); if($('div.infobar')) { $('div.infobar').append( '
Search RARBG: By IMDb Link|' + 'By Title|' + 'By Title and Year' + '
Search on The Pirate Bay: ' + 'By Title|' + 'By Title and Year' ); } if($('div.subtext')) { $('div.subtext').append( '
Search RARBG: By IMDb Link|' + 'By Title|' + 'By Title and Year' + '
Search on The Pirate Bay: ' + 'By Title|' + 'By Title and Year' ); }