// ==UserScript== // @name Direct download from Google Play // @namespace StephenP // @version 1.4.3 // @description Adds APKMirror, APK-DL and Evozi download buttons to Google Play when browsing apps. This script is based on yurenchen's "google play apk downloader". // @author StephenP // @match https://play.google.com/store/apps/details?id=* // @match http://play.google.com/store/apps/details?id=* // @grant none // @downloadURL none // ==/UserScript== var evoziURL='https://apps.evozi.com/apk-downloader/?id='+id; var apkdlURL='http://apkfind.com/store/captcha?app='+id; var apkmirrorURL='https://www.apkmirror.com/?post_type=app_release&searchtype=apk&s='+id; var id; var menubutton; var wlButton; var buttonslist; var html; (function() { 'use strict'; var pageURL=location.href+location.search; addButtons(pageURL); setInterval(checkReload, 5000, pageURL); })(); function checkReload(pageURL){ if(pageURL!=location.href+location.search){ addButtons(pageURL); pageURL=location.href+location.search; } } function addButtons(pageURL){ if(document.getElementsByClassName("buy")[0].firstElementChild.firstElementChild.getElementsByTagName("META")[1].content==0){ id=location.search.match(/id=(.*)/)[1]; menubutton=document.getElementsByClassName("action-bar-menu-button").length; wlButton = document.createDocumentFragment(); wlButton.appendChild(document.getElementsByClassName("id-wishlist-display")[0]); if(menubutton!==0){ //menubutton==0 means there is no sliding menu, an element only occurring in mobile view. buttonslist = document.getElementsByClassName("details-actions")[0]; html='APK-DLEvoziAPKMirror'; } else{ buttonslist = document.getElementsByClassName("details-actions-right")[0]; html='APK-DLEvoziAPKMirror'; } buttonslist.innerHTML=buttonslist.innerHTML+html; buttonslist.appendChild(wlButton); } }