// ==UserScript== // @name Cerca su IMDB // @namespace http://www.piratestreaming.black/film-aggiornamenti.php // @version 0.5 // @description Cerca su IMDB con un click sul titolo // @author You // @match http://www.imdb.com/find?ref_=nv_sr_fn&q=*&s=tt // @match http://www.imdb.com/title/* // @match http://www.piratestreaming.black/film-aggiornamenti.php // @match http://www.piratestreaming.black/film-aggiornamenti.php?pageNum_lista_film=*&totalRows_lista_film=530 // @match http://www.piratestreaming.black/categoria/*/* // @match http://www.italia-film.gratis/novita-streaming/ // @match http://www.italia-film.gratis/novita-streaming/page/*/ // @match http://www.italia-film.gratis/category/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var titoli = $('div.featuredText > b > a, h3 > a'); var url = ""; titoli.click(function(){ var testo = $(this).text(); var testo1 = ""; if(testo.endsWith("Sub ita")){ testo1 = testo.replace("Sub ita", ""); } url = "http://www.imdb.com/find?ref_=nv_sr_fn&q=" + testo1 + "&s=tt"; window.open(url); }); var risultati = $('td.result_text > a'); var titolo = risultati[0].getAttribute("href"); url = "http://www.imdb.com" + titolo; if(url !== ""){ window.open(url, "_self"); } })();