Automatically expands the read more and external downloads sections on Anna's Archive book pages
// ==UserScript==// @name Anna's Archive - Auto-expand// @match https://annas-archive.org/md5/*// @version 1.0// @author MedX// @namespace MedX-AA// @license MIT// @icon https://annas-archive.org/favicon.ico// @description Automatically expands the read more and external downloads sections on Anna's Archive book pages// ==/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();}