NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Songs.Nghmat Download Links Extractor // @namespace DevelopmentSimplyPut(developmentsimplyput.blogspot.com) // @description Extracts Download Links From Songs.Nghmat // @include *songs.nghmat.com* // @require http://code.jquery.com/jquery-latest.min.js // ==/UserScript== setTimeout(function(){ Run(); }, 0); function Run() { var urls = new Array(); $("div[class=song_div] table tbody tr").find("td:eq(2) a").each(function(index, value) { urls.push(('http://songs.nghmat.com/' + $(value).attr("href")).replace('com//', '.com/')); }); $('body').prepend("<span style='direction:ltr;display:block;width:100%;height:60px;color:blue;background:red;'><textarea cols='100'>" + urls.join(' ') + "</textarea></span><br />"); }