Greasy Fork is available in English.

巴哈姆特 - 發文回覆冷卻倒數

每次發文都要間隔一分鐘。然後巴哈又沒有提供原生的發文倒數...(假設冷卻時間爲 60 秒整、預留 3 秒緩衝)

Ajankohdalta 7.3.2019. Katso uusin versio.

// ==UserScript==
// @name         巴哈姆特 - 發文回覆冷卻倒數
// @namespace    -
// @version      20190308.1
// @description  每次發文都要間隔一分鐘。然後巴哈又沒有提供原生的發文倒數...(假設冷卻時間爲 60 秒整、預留 3 秒緩衝)
// @author       LianSheng
// @require      https://greasyfork.org/scripts/377302-general-source-code-injection-tool/code/General%20Source%20Code%20Injection%20Tool.js?version=667827
// @include      https://forum.gamer.com.tw/B.php*
// @include      https://forum.gamer.com.tw/C.php*
// @include      https://forum.gamer.com.tw/Co.php*
// @include      https://forum.gamer.com.tw/post1.php*
// @grant        GM_getValue
// @grant        GM_setValue
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let url = location.href;
    let hint = "發文冷卻中...";

    let css = `
[last-reply] {
    position: relative;
}
[last-reply]:hover::before {
    content: attr(last-reply);
    position: absolute;
    z-index: 2000;
    top: 46px;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 2px;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-family: sans-serif;
    white-space: nowrap;
}
`;

    if( !GM_getValue("lastreply") ) {
        GM_setValue("lastreply", 0);
    }

    // 文章列表(發文)
    if( url.match("B.php") ) {
        let post = document.querySelector("li.BH-menu-forumA-back > a");

        let id = setInterval(function() {
            let delta = cd();

            if( delta > 0 ) {
                post.addEventListener("click", disable);
                post.innerText = `${hint} ${delta} 秒`;
            } else {
                post.removeEventListener("click", disable);
                post.innerText = "發文";
                clearInterval(id);
            }
        }, 200);
    }

    // 文章串(回覆)/ 特定樓層(回覆)
    if( url.match("C.php") || url.match("Co.php") ) {
        // 上滾時的導覽列
        let navup_a = document.querySelector("i.BHicon-comment2.BH-lg").parentElement;
        let navup_block = navup_a.parentElement;
        // 下滾時的導覽列
        let navdown = document.querySelector("div.c-menu__scrolldown > div.toolbar").children[3];
        // 樓層回覆(複數個)
        let floor = document.querySelectorAll("button.btn--sm.btn--normal");
        // 頁底快速回覆
        let foot_fast = document.querySelector("input.btn--sm.btn--send.btn--normal");
        // 頁底打開完整編輯器、引言回覆
        let foot_full = document.querySelectorAll("div.option > div.toolbar > button[onclick^='location']");

        // 移除原生 title
        navup_a.removeAttribute("title");
        foot_full[0].removeAttribute("title");
        foot_full[1].removeAttribute("title");

        // 發文回覆倒數提示
        let id = setInterval(function() {
            let delta = cd();

            if( delta > 0 ) {
                navup_block.addEventListener("click", disable);
                navdown.addEventListener("click", disable);
                foot_fast.disabled = true;
                foot_full[0].disabled = true;
                foot_full[1].disabled = true;
                floor.forEach(function(e) {
                    e.disabled = true;
                    e.querySelector("span").innerText = `${hint} ${delta} 秒`;
                });
                navup_block.setAttribute("last-reply", `${hint} ${delta} 秒`);
                navdown.innerText = `${hint} ${delta} 秒`;
                foot_fast.value = `${hint} ${delta} 秒`;
                foot_full[0].setAttribute("last-reply", `${hint} ${delta} 秒`);
                foot_full[1].setAttribute("last-reply", `${hint} ${delta} 秒`);
            } else {
                navup_block.removeEventListener("click", disable);
                navdown.removeEventListener("click", disable);
                foot_fast.removeAttribute("disabled");
                foot_full[0].removeAttribute("disabled");
                foot_full[1].removeAttribute("disabled");
                floor.forEach(function(e) {
                    e.removeAttribute("disabled");
                    e.querySelector("span").innerText = "回覆";
                });
                navup_block.setAttribute("last-reply", `回覆此主題`);
                navdown.innerText = "回覆";
                foot_fast.value = "送出";
                foot_full[0].setAttribute("last-reply", `使用完整編輯器`);
                foot_full[1].setAttribute("last-reply", `引言回覆`);
                clearInterval(id);
            }
        }, 200);

        // 頁底快速回覆點擊事件
        foot_fast.addEventListener("click", function() {setTimeout( function() {
            if( document.querySelector("button[autofocus]") ) {
                document.querySelector("button[autofocus]").addEventListener("click", future63);
            }
        }, 100)});

    }

    // 完整編輯頁(不含編輯既有文章)
    if( url.match(/post1\.php.+type=1$/) ) {
        let post = document.querySelector("li.BH-menu__post__btn > a");
        post.addEventListener("click", function() {setTimeout( function() {
            if( document.querySelector("button[autofocus]") ) {
                document.querySelector("button[autofocus]").addEventListener("click", future63);
            }
        }, 100)});
    }

    function disable(e) {
        e.preventDefault();
        e.stopPropagation();
    }

    function future63() {
        return GM_setValue("lastreply", Date.now() + 63000);
    }

    function cd() {
        return parseInt((GM_getValue("lastreply") - Date.now()) / 1000);
    }

    addStyle(css, "html");
})();