BetterThingiverse

Makes thingiverse website better to use

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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);
};