Greasy Fork is available in English.

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

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

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
shiquda
일일 설치수
0
총 설치수
39
평점
0 0 0
버전
0.2.4
생성
2022-10-23
갱신
2022-10-23
라이선스
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'
})()