YouTube | Stop Autoplay (2018)

Disabled automatic playback ("Autoplay") of YouTube videos.

目前為 2018-08-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name            YouTube | Stop Autoplay (2018)
// @namespace       de.sidneys.userscripts
// @homepage        https://gist.githubusercontent.com/sidneys/0a5bea36f989d445cdfbd776023a94ca/raw/
// @version         1.4.0
// @description     Disabled automatic playback ("Autoplay") of YouTube videos.
// @author          sidneys
// @icon            https://www.youtube.com/favicon.ico
// @include         http*://www.youtube.com/*
// @require         https://gf.qytechs.cn/scripts/38888-greasemonkey-color-log/code/Greasemonkey%20%7C%20Color%20Log.js
// @run-at          document-idle
// ==/UserScript==

/**
 * ESLint configuration
 * @external
 */
/* global DEBUG */

/**
 * @default
 * @constant
 */
DEBUG = false


/**
 * @default
 * @constant
 */
const urlPath = '/watch'


/**
 * Stop YouTube Video Player
 */
let stopPlayback = () => {
    //console.info('stopPlayback')

    ['play', 'playing'].forEach((eventName) => {
        const videoElement = document.querySelector('video')

        /** @listens video:Event#play */
        /** @listens video:Event#playing */
        videoElement.addEventListener(eventName, () => {
            console.debug('videoElement', eventName)

            const playerElement = document.querySelector('.html5-video-player')

            // Pause Video
            playerElement.pauseVideo()

            // Show Status
            console.info('Playback paused.', 'getPlayerState()', playerElement.getPlayerState())
        }, { once: true })
    })
}


/**
 * Init
 */
let init = () => {
    console.debug('init')

    // Check URL
    if (!window.location.pathname.startsWith(urlPath)) { return }

    stopPlayback()
}


/**
 * Immediately Invoked Function Expression
 */
(() => {
    /** @listens window:Event#load */
    window.onload = () => {
        console.debug('window#load')

        init()
    }

    /** @listens window:Event#spfdone */
    window.addEventListener('spfdone', () => {
        console.debug('window#spfdone')

        init()
    })
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址