Newgrounds Swf Downloader

download swf from newground easily

目前為 2019-12-23 提交的版本,檢視 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    var swf = $("script:contains('swf')").text().split("\"")[3];
    var btn = `<span>
		       <a href="`+swf+`" target="_blank" title="Download Link">
			   Download This
               </a>
	           </span>`
    $("#embed_header").children().last().append(btn)
})();