// ==UserScript== // @name Better Thingiverse zip download // @namespace Dinggo67 // @description Restores zip file download button on Thingiverse // @icon https://cdn.thingiverse.com/site/img/favicons/favicon-32x32.png // @version 0.1.2 // @license GNU General Public License v3 // @copyright 2022, Dinggo // @author Dinggo // @grant none // @match https://www.thingiverse.com/thing:* // @downloadURL https://update.greasyfork.icu/scripts/443555/Better%20Thingiverse%20zip%20download.user.js // @updateURL https://update.greasyfork.icu/scripts/443555/Better%20Thingiverse%20zip%20download.meta.js // ==/UserScript== /* ORIGINAL CODE WAS FROM https://greasyfork.org/en/scripts/440679-thingiverse-zip-download, donate to original author if you want */ var no = location.pathname.match( /[0-9]+/ ); var zip = "/thing:" + no + "/zip"; var elm = document.createElement("div"); elm.innerHTML = '
'; elm.title = "Zip file download"; elm.setAttribute("class", "SidebarMenu__sideMenuTop--3xCYh"); var sidebar = document.getElementsByClassName("SidebarMenu__sidebarMenu--3uBjd"); sidebar[0].appendChild( elm );