🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

Reddit Video Pause on Scroll

Mute or stop videos on Reddit when they are scrolled out of view

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         Reddit Video Pause on Scroll
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Mute or stop videos on Reddit when they are scrolled out of view
// @author       NettiMies
// @match        https://old.reddit.com/*
// @match        https://www.reddit.com/*
// @grant        none
// @license      gpl-3.0
// ==/UserScript==

(function() {
    'use strict';

    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            const video = entry.target;
            if (entry.isIntersecting) {
                // Video is in view
                if (video.paused) {
                    video.play();
                }
                video.muted = false;
            } else {
                // Video is out of view
                video.pause();
                video.muted = true;
            }
        });
    }, {
        threshold: 0.5 // Adjust threshold as needed
    });

    function checkForVideos() {
        document.querySelectorAll('video').forEach(video => {
            observer.observe(video);
        });
    }

    // Check for new videos periodically, I don't know jack about javascript, I just know it sucks balls and is slow as hell, so this might decimate performance... Didn't for me though, so we BALL!!
    setInterval(checkForVideos, 1000);
})();