// ==UserScript==
// @name IMDb Reference
// @namespace https://zhangt.ai
// @version 0.1
// @description IMDb Reference
// @author Tai Zhang
// @match http://www.imdb.com/search/title*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('div.lister-list div.lister-item').each(function () {
$( 'h3', $(this) ).append(` <a href="http://www.bttt.la/s.php?q=${$( 'h3 a', $(this) ).text()}">bttt</a> <a href="http://www.btrenren.com/index.php/Search/index.html?search=${$( 'h3 a', $(this) ).text()}">btrr</a>`);
});
})();
//$.get( "http://www.bttt.la/s.php?q=Rogue%20One", function( data ) {
// console.log($('div.ml div.item.cl', data).text())
//});