Greasy Fork is available in English.

BetterThingiverse

Makes thingiverse website better to use

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name          BetterThingiverse
// @description   Makes thingiverse website better to use
// @namespace     https://github.com/victornpb/betterThingiverse
// @version       0.1
// @match         https://www.thingiverse.com/search
// @homepageURL   https://github.com/victornpb/betterThingiverse
// @supportURL    https://github.com/victornpb/betterThingiverse/issues
// @contributionURL https://www.buymeacoffee.com/vitim
// @grant         none
// @license       MIT
// ==/UserScript==

// Extends the search results from 20 to 200 per page
URLSearchParams.prototype._append = URLSearchParams.prototype.append;
URLSearchParams.prototype.append = function append(k, v) {
  if(k==='per_page') v = 200;
  return this._append(k, v);
};