mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
19 lines
418 B
JavaScript
19 lines
418 B
JavaScript
function removeAds()
|
|
{
|
|
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")
|
|
);
|
|
};
|