Greasy Fork is available in English.

Bilibili直播间助手

提供同传弹幕过滤,快速切换牌子,自动切换直播清晰度等功能

< Feedback on Bilibili直播间助手

Question/comment

§
Posted: 10.05.2022.

建议增加显示粉丝牌颜色的功能。可以直观看到当前粉丝牌是否点亮。

加入类似下面的代码:

this.getWore().then(res => {
    this.medalConfig.wore = res.length == 0 ? "" : res.medal_name;
    this.medalConfig.color = res.length == 0 ? "c0c0c0": res.medal_color_start.toString(16);
})

...

<button
  class="bilitools-button"
  x-bind:style="\`background-color:#\${medalConfig.color}\`"
  x-text="medalConfig.wore == ''?'未佩戴':medalConfig.wore"
  @click="openMedalBox"
></button>

但有个问题,就是送小心心后,不会立刻从灰色变成其他颜色。

Post reply

Sign in to post a reply.