您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
巴哈-禁止聊天室自動卷到最下面.
// ==UserScript== // @name 巴哈-禁止聊天室自動卷到最下面 // @namespace 巴哈-禁止聊天室自動卷到最下面 // @include https://haha.gamer.com.tw* // @version 1.00 // @grant none // @description:zh-tw 巴哈-禁止聊天室自動卷到最下面. // @description 巴哈-禁止聊天室自動卷到最下面. // ==/UserScript== /* * * 說明:禁止巴哈姆特電腦版的哈哈姆特聊天室,有人回覆就自動卷到最下面的現象 * 作者:hbl917070(深海異音) * 最後修改日期:2017-10-25 * 作者小屋:https://home.gamer.com.tw/homeindex.php?owner=hbl917070 * */ var style_48763 = document.createElement("style"); style_48763.innerHTML=` .message-scoller{ overflow-y: initial !important; height: initial !important; } .message-content{ overflow-y: auto !important; } #message-scoller_forum{ overflow-y: initial !important; height: initial !important; } `; document.body.appendChild(style_48763);