mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
22 lines
497 B
JavaScript
22 lines
497 B
JavaScript
(() =>
|
|
{
|
|
return () =>
|
|
{
|
|
waitForQuery()(
|
|
() => $("#slide_ad"),
|
|
it => it.length > 0,
|
|
it => it.css("display", "none")
|
|
);
|
|
waitForQuery()(
|
|
() => $("#home_popularize"),
|
|
it => it.length > 0,
|
|
it => it.css("display", "none")
|
|
);
|
|
waitForQuery()(
|
|
() => $(".gg-floor-module"),
|
|
it => it.length > 0,
|
|
it => it.css("display", "none")
|
|
);
|
|
};
|
|
})();
|