PTT 留言自動更新載入

自動啟用 PTT 網頁的留言自動更新功能,並在發生錯誤時重新載入網頁。

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name               PTT Comment Auto Update & Reload
// @name:zh-TW         PTT 留言自動更新載入
// @namespace          wellstsai.com
// @version            1.0.1
// @license            MIT
// @description        Automatically enables comment auto-update on PTT webpages and reloads the page upon errors.
// @description:zh-TW  自動啟用 PTT 網頁的留言自動更新功能,並在發生錯誤時重新載入網頁。
// @author             WellsTsai
// @match              https://www.ptt.cc/*
// @grant              none
// @run-at             document-idle
// ==/UserScript==

(() => {
    'use strict'

    const enableAutoUpdate = () => {
        const pollerDiv = document.querySelector('#article-polling')

        if (!pollerDiv) {
            console.warn('PTT AutoReload: #article-polling not found.')
            return
        }

        pollerDiv.click()
        console.log('PTT AutoReload: Auto-update enabled.')

        const observer = new MutationObserver(mutations => {
            mutations.forEach(mutation => {
                if (mutation.target.textContent.includes('無法更新推文')) {
                    console.warn('PTT AutoReload: Detected update error, reloading page...')
                }
            })
        })

        observer.observe(pollerDiv, { childList: true, subtree: true })
    }

    enableAutoUpdate()
})()