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 installs. With this script the same link will open scripts list sorted for creation date by defaut.

2025/01/13のページです。最新版はこちら

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Open scripts list sorting for creation date by default
// @namespace   StephenP
// @match       https://greasyfork.org/*
// @grant       none
// @version     1.1
// @author      StephenP
// @description When you click on the top menu of Greasyfork on the Scripts link, you normally see the scripts listed by daily installs. 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");
for(let sl of scriptslinks){
    sl.firstChild.href=sl.firstChild.href.replace("/scripts","/scripts?sort=created");
}