您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects Android Arsenal library links to Github automatically if it is coming from the RSS Feed.
当前为
// ==UserScript== // @name Android Arsenal Feed Link to Github Redirection // @description Redirects Android Arsenal library links to Github automatically if it is coming from the RSS Feed. // @version 2.0 // @namespace io.github.ni554n // @match https://android-arsenal.com/details/*/*?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Android_Arsenal+%28The+Android+Arsenal%29 // @supportURL https://github.com/ni554n/userscripts/issues // @license MIT // @author Nissan Ahmed // @homepageURL https://ni554n.github.io/ // @contributionURL https://paypal.me/ni554n // ==/UserScript== const labels = document.querySelectorAll("body > div.wrap.container > div > div > div.row.project-header > div:nth-child(1) > dl > dt"); // Grab the link and forward for (let i = labels.length - 1; i >= 0; i--) { const label = labels.item(i); if (label.innerText === "Link") { window.location.replace(label.nextElementSibling.innerText); break; } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址