您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show baidu link for macapp.so
// ==UserScript== // @name Macapp.so Link // @namespace https://gf.qytechs.cn/en/scripts/13086-macapp-so-link // @version 0.11 // @description Show baidu link for macapp.so // @author kk // @match http://www.macapp.so/* // @grant none // @require https://code.jquery.com/jquery-2.1.4.min.js // ==/UserScript== 'use strict'; $(setTimeout(function () { if (document.getElementById("code")) { var dl = document.getElementsByClassName("download")[0]; var code = document.getElementById("code"); code.style.color = "rgb(51,51,51)"; code.style.lineHeight = "0"; code.style.cursor = "text"; var a = document.createElement('a'); a.innerHTML = "Get App"; var href = "/go" + window.location.pathname; a.setAttribute("href", href); a.setAttribute("target", "_blank"); dl.insertBefore(a, code); code.removeAttribute("id") } } , 1000));
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址