Reverse anime list in myself-bbs

Reverse anime list in https://myself-bbs.com/

// ==UserScript==
// @name         Reverse anime list in myself-bbs
// @description  Reverse anime list in https://myself-bbs.com/
// @icon         https://myself-bbs.com/favicon.ico
// @author       jaychsu
// @version      1.0.0
// @license      WTFPL
// @match        https://myself-bbs.com/thread-*
// @namespace https://gf.qytechs.cn/users/420771
// ==/UserScript==


(function() {
    'use strict'
  
    const list = document.querySelector('.main_list')
    
    let i = list.childNodes.length
    
    while (i--) list.appendChild(list.childNodes[i])
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址