Greasy Fork

Greasy Fork is available in English.

Filelist searcher for Cinemagia

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

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

// ==UserScript==
// @name       Filelist searcher for Cinemagia
// @namespace  http://use.i.E.your.homepage/
// @version    0.1
// @description  Helps you to search a movie from cinemagia.ro on filelist.ro
// @match      http://tampermonkey.net/index.php?version=3.8.52&ext=dhdg&updated=true
// @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);
});