Holotower Custom Emotes Box

Adds a custom emote box to the quick reply form on Holotower

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

作者
tentontruck
日安装量
0
总安装量
93
评分
0 0 0
版本
1.13
创建于
2025-07-02
更新于
2025-11-21
大小
97.3 KB
许可证
CC0
适用于

Adds a button to the Quick Reply box to open an Emote Menu.

To adjust the height of the emote list add this to User CSS:

#emote-list { max-height:400px !important }

Emotes in posts can be made bigger with this User CSS:

.post.reply img.c_emoji {
 height: 40px;
 width: 40px;
}

You can use CSS to apply fun effects and animations to specific emotes:

@keyframes laugh-jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.c_emoji[src*="saba/_HAHA.png"] {
animation: laugh-jump 0.25s ease-in-out infinite;
}