Greasy Fork is available in English.
Add YouTube Premium-like features: ad-blocking, background play, HD/4K default quality, downloader, dark mode, and Premium logo.
< 脚本 YouTube Premium Features (All-in-One) 的反馈
To fix the ability to pause edit this part of code: // Function: Enable background playback const enableBackgroundPlay = () => { const video = document.querySelector('video'); if (video) { video.loop = false; // Prevent looping -----> //video.play(); } };Add "//" in front of "video.play();" and save. May cause issues with background play but I have not noticed. Hope this helps.
登录以发布留言。
To fix the ability to pause edit this part of code:
// Function: Enable background playback
const enableBackgroundPlay = () => {
const video = document.querySelector('video');
if (video) {
video.loop = false; // Prevent looping
-----> //video.play();
}
};
Add "//" in front of "video.play();" and save. May cause issues with background play but I have not noticed. Hope this helps.