mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
13 lines
314 B
JavaScript
13 lines
314 B
JavaScript
SpinQuery.count(
|
|
() => document.querySelectorAll("ul.fr>li.nav-item:not(.profile-info)"),
|
|
6,
|
|
navItems =>
|
|
{
|
|
navItems.forEach(nav =>
|
|
{
|
|
nav.style.cursor = "pointer";
|
|
const a = nav.querySelector("a.t");
|
|
a.removeAttribute("href");
|
|
});
|
|
}
|
|
); |