Anna's Archive - Show External Downloads

Automatically expands the external downloads section on httpss://annas-archive.org

Ajankohdalta 8.5.2024. Katso uusin versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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 expands the external downloads section on httpss://annas-archive.org
// @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");
    }
}