Advertisement
Guest User

Untitled

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