google play apk downloader

add a download button (https://apps.evozi.com/apk-downloader/?id=xxx) to goole pages (play.google.com/store/apps/details?id=xxx)

  1. // ==UserScript==
  2. // @name google play apk downloader
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description add a download button (https://apps.evozi.com/apk-downloader/?id=xxx) to goole pages (play.google.com/store/apps/details?id=xxx)
  6. // @author yurenchen
  7. // @match https://play.google.com/store/apps/details?id=*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. //获取 apk id
  15. //var id=document.body.getAttribute('data-docid');
  16. var id=location.search.match(/id=(.*)/)[1];
  17. //利用 apps.evozi.com 下载
  18. var url='https://apps.evozi.com/apk-downloader/?id='+id;
  19. //创建超链接按钮
  20. var html='<a href="'+url+'" class="large play-button download-apk-button apps ">download apk</a>';
  21. $('.details-actions>div:first>span').append(html);
  22.  
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址