mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
17 lines
389 B
JavaScript
17 lines
389 B
JavaScript
(() =>
|
|
{
|
|
return (settings, resources) =>
|
|
{
|
|
SpinQuery.condition(
|
|
() =>
|
|
{
|
|
if (document.querySelector(".bilibili-player-video"))
|
|
{
|
|
return document.querySelector("video");
|
|
}
|
|
},
|
|
it => it && it.paused === true,
|
|
it => it.play(),
|
|
);
|
|
};
|
|
})(); |