Greasy Fork

Anna's Archive - Auto-expand

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

目前为 2025-02-16 提交的版本。查看 最新版本

// ==UserScript=={{{
// @name        Anna's Archive - Auto-expand
// @match       https://annas-archive.org/md5/*
// @version     1.0
// @author      MedX
// @namespace   MedX-AA
// @license     MIT
// @description Automatically expands the read more and external downloads section on httpss://annas-archive.org
// ==/UserScript==}}}}}}

for (const el of document.getElementsByClassName("js-show-external-button")) {
    el.click();
}

for (const el of document.getElementsByClassName("js-md5-top-box-description-link")) {
    el.click();
}