// ==UserScript== // @name Newgrounds Swf Downloader // @namespace ngroundswf // @version 1.0 // @description download swf from newground easily // @author Reissfeld // @match https://www.newgrounds.com/portal/view/* // @require https://code.jquery.com/jquery-3.4.1.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var swf = $("script:contains('swf')").text().split("\"")[3]; var btn = ` Download This ` $("#embed_header").children().last().append(btn) })();