Newgrounds Swf Downloader

download swf from newground easily

  1. // ==UserScript==
  2. // @name Newgrounds Swf Downloader
  3. // @namespace ngroundswf
  4. // @version 1.1
  5. // @description download swf from newground easily
  6. // @author Reissfeld
  7. // @match https://www.newgrounds.com/portal/view/*
  8. // @require https://code.jquery.com/jquery-3.4.1.min.js
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. function btn(a){
  14. var bt = `<span>
  15. <a href="`+a+`" target="_blank" title="Download Link">
  16. Download This
  17. </a>
  18. </span>`;
  19. return bt;
  20. }
  21. var swf = $("script:contains('swf')").text().split("\"")[3];
  22. if(swf != undefined){
  23. $("#embed_header").children().last().append(btn(swf))
  24. }
  25. })();