Last active
March 11, 2025 17:21
-
Star
(120)
You must be signed in to star a gist -
Fork
(31)
You must be signed in to fork a gist
-
-
Save Eptun/3fdcc84552e75e452731cd4621c535e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name EmuParadise Download Workaround - 1.1.1 | |
// @version 1.1.2 | |
// @description Replaces the download button link with a working one | |
// @author Eptun | |
// @match https://www.emuparadise.me/*/*/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var id = ((document.URL).split("/"))[5]; | |
$(".download-link").prepend(`<a target="_blank" href="/roms/get-download.php?gid=`+id+`&test=true" title="Download using the workaround script">Download using the workaround script</a><br><br>`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Eptun
@Eptun I loved your workaround! As a recomendation from a Web Developer.
If anything that I said was difficult I will attach the code for you!
User
You don't need to install any add-on!
Developers Tools
from the browser (ussually clickingF12
)console
and click it.[Repaired]
. That link is the one that should be clicked.Firefox
or if you want to use the one that blocked the link, follow the steps from @ReclusiveEagle.