您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
面向CN Akatsuki玩家的谱面镜像下载器, 支持sayobot源
// ==UserScript== // @name 使用Sayobot源下载Akatsuki网页的谱面 // @name:en AkaSmoothDownloader // @description 面向CN Akatsuki玩家的谱面镜像下载器, 支持sayobot源 // @description:en Allow CN Akatsuki player downloads Beatmaps with Sayobot mirror site // @namespace http://tampermonkey.net/ // @version 0.1 // @author TROU2004 // @include *akatsuki.pw* // ==/UserScript== document.addEventListener("DOMContentLoaded", function(){ let mainInterval = setInterval(function () { let href = window.location.href if (href.indexOf("akatsuki.pw/b/") != -1) { var dirLink = document.querySelector("body > div.ui.full.height.main.wrapper > div.h-container > div:nth-child(2) > div.ui.segments > div > div > div > div.full-centered.column > div > a.ui.pink.labeled.icon.button").href if (dirLink.indexOf("osu://dl/") != -1) { var bmsetid = dirLink.substring(dirLink.indexOf("dl/") + 3, dirLink.length) window.location.href = "https://txy1.sayobot.cn/beatmaps/download/novideo/" + bmsetid clearInterval(mainInterval) } } }, 200) })
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址