Advertisement
Guest User

Untitled

a guest
Oct 27th, 2018
6,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // ==UserScript==
  2. // @name EmuParadise Download Workaround - 1.1.2 - FIXED
  3. // @version 1.1.2
  4. // @description Replaces the download button link with a working one
  5. // @author Eptun [BLATT]
  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. var url = document.URL
  14. if(url.indexOf('-download') != -1){
  15. var id = document.URL.split('/')[5].split('-')[0];
  16. var newurl = 'https://www.emuparadise.me/roms/get-download.php?gid=' + id + '&test=true';
  17. location.replace(newurl);
  18. }
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement