Greasy Fork is available in English.
Helps you to search a movie from cinemagia.ro on filelist.ro
当前为
// ==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);
});