// ==UserScript== // @name 25pp_ipa_download // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the 25pp world! // @author keulraesik // @match https://www.25pp.com/ios/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var buttons = document.getElementsByClassName("btn-install-x"); if (buttons && buttons.length) { var button = buttons[0]; button.onclick= function() { window.location = atob(button.getAttribute("appdownurl")); }; } })();