// ==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 // @downloadURL none // ==/UserScript== $(function() { var movieTitle = $('.color4').html(); var searchTerm = movieTitle.replace(" ", "+"); var hdRO = ''; $('.color4').parent().append(hdRO); });