8chanSS

Userscript to style 8chan

< 腳本8chanSS的回應

評論:普通 - 腳本能使用,但有一些問題

§
發表於:2025-05-01
編輯:2025-05-01

bro edit line 773, because the video always play on full volume on hover

if (isVideo) {
    floatingMedia.autoplay = true;
    floatingMedia.loop = true;
    floatingMedia.muted = false;
    floatingMedia.playsInline = true;

    // Add volume control for videos
    let volume = 0.5;
    try {
        const v = await getSetting("hoverVideoVolume");
        if (typeof v === "number" && !isNaN(v)) {
            volume = v / 100;
        }
    } catch {}
    floatingMedia.volume = clamp(volume, 0, 1);
}
OtakuDude作者
§
發表於:2025-05-01

Thank you for the bug report.
Will be fixed in the next version.

發表回覆

登入以回復

长期地址
遇到问题?请前往 GitHub 提 Issues。