Sleazy Fork is available in English.

2048论坛自动滚动和度盘检测

打开帖子自动滚动到正文部分,并且自动执行检测附件

// ==UserScript==
// @name         2048论坛自动滚动和度盘检测
// @namespace    http://tampermonkey.net/
// @version      2024-05-28
// @description  打开帖子自动滚动到正文部分,并且自动执行检测附件
// @author       xanta
// @match        https://hjd2048.com/2048/read.php?tid=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=hjd2048.com
// @homepageURL  https://github.com/blkot
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function scrollToMainPost() {
        const mainPostContent = document.querySelector('.t5');
        if (mainPostContent) {
            mainPostContent.scrollIntoView({ behavior: 'smooth' });
        }
    }

    function autoCheckpan() {
        if (typeof JQ !== 'undefined') {
            // Select all elements with ID starting with 'checkpan'
            JQ('[id^=checkpan]').each(function() {
                JQ(this).click();
            });
        } else {
            console.log('JQ not found.');
        }

    }
    window.addEventListener('load', scrollToMainPost);
    window.addEventListener('load', autoCheckpan);

})();