您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Cerca su IMDB con un click sul titolo
当前为
// ==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 // ==/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"); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址