NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Newgrounds Flash Downloader // @author Irastris // @version 1.0 // @description Adds a download button for flashes on Newgrounds // @match www.newgrounds.com/portal/view/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js // ==/UserScript== $(window).on("load",function(){ if($("#swfobject_embed").length>0){ var dllocation = $("#swfobject_embed").attr("data"); $("div[itemprop=aggregateRating]").append("<a href='"+dllocation+"' download class='ngdl-button'><span></span></a>"); $(".ngdl-button").css({"display":"inline-block","width":"15px","height":"15px","padding":"5"}); $(".ngdl-button span").css({"display":"block","width":"15px","height":"15px","background-image":"url(http://cssimg.ngfiles.com/icons/a-15yellows-playlist.png)","background-repeat":"no-repeat","background-position":"-375px 0"}); } else { return false(); } });