This file contains 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.me | |
// @match https://www.emuparadise.me/*/*/* | |
// ==/UserScript== | |
var _el = document.querySelectorAll('.download-link a[href*="-download"]'), _url = document.URL.split('/'); | |
if(_url[3] == 'Sega_Dreamcast_ISOs') { | |
for(var _i = 0; _i < _el.length; _i++) { | |
_el[_i].href = 'http://50.7.189.186/happyxhJ1ACmlTrxJQpol71nBc/Dreamcast/' + _el[_i].title.split('Download ').pop().split(' ISO for Sega Dreamcast')[0]; | |
} |