()
| 1617 | |
| 1618 | // 修复排行榜序号 |
| 1619 | const fixItemRank = () => { |
| 1620 | const hotItems = document.querySelectorAll('.HotList-list .HotItem:not([hidden])'); |
| 1621 | hotItems.forEach((item, index) => { |
| 1622 | const rank = item.querySelector('.HotItem-index .HotItem-rank'); |
| 1623 | if (rank !== null) rank.innerText = index + 1; |
| 1624 | }); |
| 1625 | } |
| 1626 | |
| 1627 | const blockLive_content = (mutationsList, observer) => { |
| 1628 | for (const mutation of mutationsList) { |