SHARE
TWEET
Untitled
a guest
Oct 27th, 2018
1,995
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- // ==UserScript==
- // @name EmuParadise Download Workaround - 1.1.2 - FIXED
- // @version 1.1.2
- // @description Replaces the download button link with a working one
- // @author Eptun [BLATT]
- // @match https://www.emuparadise.me/*/*/*
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var url = document.URL
- if(url.indexOf('-download') != -1){
- var id = document.URL.split('/')[5].split('-')[0];
- var newurl = 'https://www.emuparadise.me/roms/get-download.php?gid=' + id + '&test=true';
- location.replace(newurl);
- }
- })();
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.
