>>849
>>850
>>851
>>852
みなさんありがとう
自分の力量ではできることなくなってきたので
暇見てちょこちょこ作ってみました
CPU負荷はそれほどでもないというか微々たるものです(i7 3770S)

お礼というわけではないけど
reddit.comにあったサウンドアイコンアニメーションCSS好みに修正したもの貼りますね
/* サウンドアイコンアニメーション */
/*==== Thumping Sound icon for tab that has sound playing ====*/
.tab-icon-sound[soundplaying] {
color: blue !important;
transform: rotate(-90deg) !important;
animation: thump .47s ease infinite !important;
margin-bottom: -8px !important;
}
@keyframes thump {
10%,90% { margin-top: -7px;
}
}
.tab-icon-sound[muted] {
color: red !important;
transform: rotate(-90deg) !important;
animation: none !important;
margin-bottom: 0px !important;
}