您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); }); })();