// ==UserScript== // @name IMDb Pirate Downloads // @namespace https://r3bify.info // @version 0.4 // @description Find IMDb Movies and TV Shows on Kickass Torrents and The Pirate Bay // @author R3bify // @icon https://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', false); xmlhttp.send(); var imdbJSON = JSON.parse(xmlhttp.responseText); $('div.subtext').append( '
Search Kickass Torrents: By IMDb Link|' + 'By Title|' + 'By Title and Year' + '
Search on The Pirate Bay: ' + 'By Title|' + 'By Title and Year' );