Greasy Fork 支持简体中文。

keylol 板块自动按最新发布排序

keylol 板块自动按最新发布排序脚本

作者
shiquda
今日安裝
0
安裝總數
40
評價
0 0 0
版本
0.2.4
建立日期
2022-10-23
更新日期
2022-10-23
尺寸
578 位元組
授權條款
MIT
腳本執行於

// ==UserScript==
// @name keylol 板块自动按最新发布排序
// @namespace http://tampermonkey.net/
// @version 0.2.4
// @description keylol 板块自动按最新发布排序脚本
// @author shiquda
// @include /https://keylol.com/f\d+\-\d+
// @license MIT
// ==/UserScript==
(function() {
'use strict';

// Your code here...
var $url = window.location.href
var fid = Number($url.slice(20,23))
window.location.href = 'https://keylol.com/forum.php?mod=forumdisplay&fid=' + fid + '&filter=author&orderby=dateline'
})()