Skip to content

Instantly share code, notes, and snippets.

@alipio
Forked from Eptun/emuparadisev2.eptun.user.js
Created November 23, 2019 14:13
Show Gist options
  • Select an option

  • Save alipio/77d13e3d1fc00bd335e6e9b8152a9902 to your computer and use it in GitHub Desktop.

Select an option

Save alipio/77d13e3d1fc00bd335e6e9b8152a9902 to your computer and use it in GitHub Desktop.

Revisions

  1. @Eptun Eptun created this gist Aug 11, 2018.
    20 changes: 20 additions & 0 deletions emuparadisev2.eptun.user.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    // ==UserScript==
    // @name EmuParadise download script
    // @version 1
    // @description Downloads games directly after clicking their name
    // @author Eptun
    // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
    // @match https://www.emuparadise.me/*/*/*

    // @grant none
    // ==/UserScript==

    (function() {
    'use strict';

    $(".gamelist").each(function(i) {
    var id = $(this).attr('href').split("/")[3];
    $(this).attr('href', "/roms/get-download.php?gid="+id+"&test=true");
    });

    })();