Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/ea9a49f8092a926d3c0b04e795420f0d.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name 25pp_direct_download // @namespace http://tampermonkey.net/ // @version 1.0 // @description Download cracked ipa directly, without bullshit. // @author Yiping Deng // @match https://www.25pp.com/ios/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/369852/25pp_direct_download.user.js // @updateURL https://update.greasyfork.icu/scripts/369852/25pp_direct_download.meta.js // ==/UserScript== (function() { 'use strict'; var button=document.getElementsByClassName("btn-install-x")[0]; var url = atob(button.getAttribute("appdownurl")); //get the actual url button.href = url; button.onclick=null; })();