Цокольный этаж - загрузка книг

Makes all buttons on the search page linkable, allowing you to open them in bulk, e.g. with MMB

// ==UserScript==
// @name         Цокольный этаж - загрузка книг
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Makes all buttons on the search page linkable, allowing you to open them in bulk, e.g. with MMB
// @author       y7o4ka
// @match        https://searchfloor.org/search/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=searchfloor.org
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll('[class*="download-btn"]').forEach(el => {
        var newA = document.createElement("a");
        newA.href = el.dataset.url;
        newA.style.color = 'inherit';
        newA.style.textDecoration = 'inherit';
        while(el.hasChildNodes()) {
            newA.appendChild(el.firstChild);
        }
        el.appendChild(newA);
    });
})();