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://greasyfork.org/users/420771
// ==/UserScript==


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