Sort the Pirate Bay by seeders

By engtech Last update May 3, 2008 — Installed 1,447 times.
// ==UserScript==
// @name           Sort the Pirate Bay by seeders
// @namespace      http://InternetDuctTape.com
// @description    Automatically sort by seeders insetad of by date uploaded
// @include        http://thepiratebay.org/*/99/100
// ==/UserScript==

(function() {
  document.location.pathname = document.location.pathname.replace('/99/100','/07/100');
})();