您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
add a download button (https://apps.evozi.com/apk-downloader/?id=xxx) to goole pages (play.google.com/store/apps/details?id=xxx)
// ==UserScript== // @name google play apk downloader // @namespace http://tampermonkey.net/ // @version 0.1 // @description add a download button (https://apps.evozi.com/apk-downloader/?id=xxx) to goole pages (play.google.com/store/apps/details?id=xxx) // @author yurenchen // @match https://play.google.com/store/apps/details?id=* // @grant none // ==/UserScript== (function() { 'use strict'; //获取 apk id //var id=document.body.getAttribute('data-docid'); var id=location.search.match(/id=(.*)/)[1]; //利用 apps.evozi.com 下载 var url='https://apps.evozi.com/apk-downloader/?id='+id; //创建超链接按钮 var html='<a href="'+url+'" class="large play-button download-apk-button apps ">download apk</a>'; $('.details-actions>div:first>span').append(html); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址