Open scripts list sorting for creation date by default

When you click on the top menu of Greasyfork on the Scripts link, you normally see the scripts listed by daily imstalls. With this script the same link will open scripts list sorted for creation date by defaut.

La data de 19-05-2024. Vezi ultima versiune.

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 or Violentmonkey 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!)

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!)

// ==UserScript==
// @name        Open scripts list sorting for creation date by default
// @namespace   StephenP
// @match       https://greasyfork.org/*
// @grant       none
// @version     1.0
// @author      StephenP
// @description When you click on the top menu of Greasyfork on the Scripts link, you normally see the scripts listed by daily imstalls. With this script the same link will open scripts list sorted for creation date by defaut.
// @license     AGPL-3.0
// @contributionURL https://buymeacoffee.com/stephenp_greasyfork
// ==/UserScript==
var scriptslinks=document.getElementsByClassName("scripts-index-link");
scriptslinks[0].firstChild.href=scriptslinks[0].firstChild.href.replace("/scripts","/scripts?sort=created");