PollitoKamikaze

EmuParadise Download Workaround

Aug 10th, 2018
80,482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         EmuParadise Download Workaround - 1.1.2
  3. // @version      1.1.2
  4. // @description  Replaces the download button link with a working one
  5. // @author       Eptun
  6. // @match        https://www.emuparadise.me/*/*/*
  7. // @require      http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     const id = document.URL.split('/')[5];
  15.     $('.download-link').children()[0].href = `/roms/get-download.php?gid=${id}&test=true`;
  16. })();
Add Comment
Please, Sign In to add comment