Anna's Archive - Show External Downloads

Automatically show external downloads on Anna's Archive.

目前为 2024-05-06 提交的版本。查看 最新版本

// ==UserScript==
// @name        Anna's Archive - Show External Downloads
// @namespace   https://ash.fail
// @match       https://annas-archive.org/md5/*
// @grant       none
// @version     1.0.0
// @author      https://ash.fail
// @license     Unlicense
// @description Automatically show external downloads on Anna's Archive.
// @homepageURL https://git.ash.fail/userscripts
// @supportURL  https://ash.fail/contact.html
// ==/UserScript==

for (const el of document.getElementsByClassName("js-show-external")) {
    el.classList.remove("hidden");
}

for (const el of document.getElementsByTagName("a")) {
    if ((el.textContent === "show external downloads")) {
        el.classList.add("hidden");
    }
}

QingJ © 2025

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