daily pastebin goal
4%
SHARE
TWEET

Untitled

a guest Oct 27th, 2018 1,995 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. })();
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top