Universal Autoplay Stopper

Aims to prevent autoplay on any streaming service!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Universal Autoplay Stopper
// @version      0.8
// @description  Aims to prevent autoplay on any streaming service!
// @match        https://*/*
// @namespace https://greasyfork.org/users/189717
// ==/UserScript==

(() => {
    const setLastUserAction = () => {
        localStorage.setItem('last user action', Date.now())
    }

    ['click', 'keydown'].forEach((type) => {
        document.addEventListener(type, setLastUserAction)

        // Listen on this element for Netflix, because events don't bubble up to document.
        const watchVideoElement = document.querySelector('.watch-video')
        if(watchVideoElement){
            watchVideoElement.addEventListener(type, setLastUserAction)
        }
    })

    setInterval(() => {
        document.querySelectorAll('video').forEach((v) => {
            const timeSinceAction = Date.now() - (localStorage.getItem('last user action') ?? 0)
            if(v.currentTime < 30 && timeSinceAction > 60000 && !v.paused){
                v.pause()
            }
        })
    }, 1000)
})()