Greasy Fork is available in English.

pause-videos-when-not-visible

play/pause videos

สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/492879/1362452/pause-videos-when-not-visible.js

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name               Pause videos when not visible
// @namespace          https://greasyfork.org/users/821661
// @version            1.0
// @description        play/pause videos
// @author             hdyzen
// @match              https://*/*
// @grant              none
// @license            MIT
// ==/UserScript==
'use strict';

function observerIt(elements, threshold) {
    const observer = new MutationObserver(() => {
        const videos = document.querySelectorAll(elements);
        if (videos.length) {
            videos.forEach(video => {
                pauseVideo(video, threshold);
            });
        }
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true,
    });
}

function pauseVideo(element, threshold) {
    const observer = new IntersectionObserver(
        entries => {
            entries.forEach(entry => {
                !entry.isIntersecting && !entry.target.paused ? entry.target.pause() : undefined;
            });
        },
        { threshold: threshold },
    );

    observer.observe(element);
}