Greasy Fork

Greasy Fork is available in English.

Cinemagia movies Search tool for Filelist

Helps you to search a movie from cinemagia on filelist.ro

目前为 2014-09-06 提交的版本,查看 最新版本

// ==UserScript==
// @name       Cinemagia movies Search tool for Filelist
// @namespace  http://use.i.E.your.homepage/
// @version    0.1
// @description  Helps you to search a movie from cinemagia on filelist.ro
// @match      http://www.cinemagia.ro/filme/*/
// @copyright  2014, Mihai Morcov
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// ==/UserScript==

$(function() {
var movieTitle = $('.color4').html();
var searchTerm = movieTitle.replace(" ", "+");
var hdRO = '<a href="http://filelist.ro/browse.php?search='+searchTerm+'&cat=19" style="margin-left: 10px; margin-right: 10px;" ><img width="25" height="25" src="http://filelist.ro/styles/images/cat/hd-ro.png"></a>';

$('.color4').parent().append(hdRO);
});