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

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

Penulis
shiquda
Pemasangan harian
0
Total pemasangan
40
Nilai
0 0 0
Versi
0.2.4
Dibuat
23 Oktober 2022
Diperbarui
23 Oktober 2022
Size
578 Byte
Lisensi
MIT
Berlaku untuk

// ==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'
})()