您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects forum main page index into sorting threads by date of creation, newest created threads at the top.
// ==UserScript== // @name GodLikeProductions redirect forum display to newest threads first // @match https://www.godlikeproductions.com // @description Redirects forum main page index into sorting threads by date of creation, newest created threads at the top. // @version 0.0.1.20230227044718 // @namespace https://greasyfork.org/users/1033655 // ==/UserScript== var oldUrlPath = window.location.pathname; if ( ! /\.compact$/.test (oldUrlPath) ) { var newURL = window.location.protocol + "//" + window.location.host + oldUrlPath + "forum1/pg1?sort=posted&order=desc" + window.location.search + window.location.hash ; window.location.replace (newURL); }