// ==UserScript== // @name osu! Download from mirror // @namespace http://www.icycat.com // @description Download beatbaps from mirror site // @include *osu.ppy.sh/b* // @include *osu.ppy.sh/s* // @version 1.3 // @grant none // @downloadURL none // ==/UserScript== var mirrorDown = '
'; $('.beatmapDownloadButton:first').before(mirrorDown); $('#mirrorLoli').click(function(){ location.href = 'http://loli.al'+location.pathname; }) $('#mirrorBloodcat').click(function(){ location.href = 'https://bloodcat.com/osu'+$('.beatmapDownloadButton:last a').attr('href').replace('d','m'); })