mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
15 lines
420 B
JavaScript
15 lines
420 B
JavaScript
(() =>
|
|
{
|
|
return (settings, resources) =>
|
|
{
|
|
function skipChargeList()
|
|
{
|
|
const jumpButton = document.querySelector(".bilibili-player-electric-panel-jump");
|
|
jumpButton && jumpButton.click();
|
|
}
|
|
SpinQuery.select(() => document.querySelector("#bofqi")).then(() =>
|
|
{
|
|
Observer.subtree("#bofqi", () => skipChargeList());
|
|
});
|
|
};
|
|
})(); |