mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
16 lines
498 B
JavaScript
16 lines
498 B
JavaScript
(() =>
|
|
{
|
|
return (settings, resources) =>
|
|
{
|
|
new SpinQuery(
|
|
() => $(".head-content.bili-wrapper>div.search").not(".filter-item"),
|
|
it => it.length > 0 && $(".nav-con.fr").length > 0,
|
|
textBox =>
|
|
{
|
|
textBox.detach()
|
|
// insert after only "first" right-nav. There will be 2 in Edge...
|
|
.insertAfter($(document.querySelector(".nav-con.fr")));
|
|
}
|
|
).start();
|
|
};
|
|
})(); |