您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Restores zip file download button on Thingiverse
// ==UserScript== // @name Thingiverse zip download // @namespace Nickel // @description Restores zip file download button on Thingiverse // @icon https://cdn.thingiverse.com/site/img/favicons/favicon-32x32.png // @version 0.1.1 // @license GNU General Public License v3 // @copyright 2022, Nickel // @author Nickel // @grant none // @include https://www.thingiverse.com/thing:* // ==/UserScript== var no = location.pathname.match( /[0-9]+/ ); var zip = "/thing:" + no + "/zip"; var elm = document.createElement("a"); elm.innerText = "Download zip"; elm.href = zip; elm.title = "Zip file download"; elm.setAttribute("style", "font-weight: bold; color: black; margin-left: 20px; margin-top: 10px;"); sidebar = document.getElementsByClassName("SidebarMenu__sidebarMenu--3uBjd"); sidebar[0].appendChild( elm );