Greasy Fork

Disable YouTube AutoPause

「视频已暂停。是否继续观看?」不再显示。

目前为 2023-04-26 提交的版本。查看 最新版本

/*

MIT License

Copyright 2022 CY Fung

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

*/
// ==UserScript==
// @name                Disable YouTube AutoPause
// @name:en             Disable YouTube AutoPause
// @name:ja             Disable YouTube AutoPause
// @name:zh-TW          Disable YouTube AutoPause
// @name:zh-CN          Disable YouTube AutoPause
// @namespace           http://tampermonkey.net/
// @version             2023.04.26
// @license             MIT License
// @description         "Video paused. Continue watching?" will not appear anymore.
// @description:en      "Video paused. Continue watching?" will not appear anymore.
// @description:ja      「動画が一時停止されました。続きを視聴しますか?」は二度と起こりません。
// @description:zh-TW   「影片已暫停,要繼續撥放嗎?」不再顯示。
// @description:zh-CN   「视频已暂停。是否继续观看?」不再显示。
// @author              CY Fung
// @match               https://www.youtube.com/*
// @exclude             /^https?://\S+\.(txt|png|jpg|jpeg|gif|xml|svg|manifest|log|ini)[^\/]*$/
// @icon                https://raw.githubusercontent.com/cyfung1031/userscript-supports/main/icons/disable-youtube-autopause.svg
// @supportURL          https://github.com/cyfung1031/userscript-supports
// @run-at              document-start
// @grant               none
// @unwrap
// @allFrames
// @inject-into page
// ==/UserScript==

/* jshint esversion:8 */

(function () {
  'use strict';
  const youThereDataHashMapPauseDelay = new WeakMap();
  const youThereDataHashMapPromptDelay = new WeakMap();
  const websiteName = 'YouTube';

  function hookYouThereData(youThereData) {
    if (!youThereData || youThereDataHashMapPauseDelay.has(youThereData)) return;
    const retPauseDelay = youThereData.playbackPauseDelayMs;
    const retPromptDelay = youThereData.promptDelaySec;
    const tenPU = Math.floor(Number.MAX_SAFE_INTEGER * 0.1);
    const mPU = Math.floor(tenPU / 1000);

    if ('playbackPauseDelayMs' in youThereData && retPauseDelay >= 0 && retPauseDelay < 4 * tenPU) {
      youThereDataHashMapPauseDelay.set(youThereData, retPauseDelay);
      const retType = typeof retPauseDelay === 'string' ? 2 : +(typeof retPauseDelay === 'number')
      if (retType >= 1) {
        Object.defineProperty(youThereData, 'playbackPauseDelayMs', {
          enumerable: true,
          configurable: true,
          get() {
            Promise.resolve(new Date).then(d => {
              console.log(`${websiteName} is trying to pause video...`, d.toLocaleTimeString());
            }).catch(console.warn);
            let ret = 5 * tenPU;
            if (retType === 2) return `${ret}`;
            return ret;
          },
          set(newValue) {
            let oldValue = youThereDataHashMapPauseDelay.get(this);
            Promise.resolve([oldValue, newValue, new Date]).then(args => {
              const [oldValue, newValue, d] = args;
              console.log(`${websiteName} is trying to change value 'playbackPauseDelayMs' from ${oldValue} to ${newValue} ...`, d.toLocaleTimeString());
            }).catch(console.warn)
            youThereDataHashMapPauseDelay.set(this, newValue);
            return true;
          }
        });
      }
      if (typeof ((youThereData.showPausedActions || 0).length) === 'number' && !youThereData.tvTyh) {
        youThereData.tvTyh = []
        Object.defineProperty(youThereData, 'showPausedActions', {
          enumerable: true,
          configurable: true,
          get() {
            const r = this.tvTyh
            if ((r || 0).length >= 1) r.length = 0
            return r
          },
          set(nv) {
            return true
          }
        })
      }
    }

    if ('promptDelaySec' in youThereData && retPromptDelay >= 0 && retPromptDelay < 4 * mPU) {
      youThereDataHashMapPromptDelay.set(youThereData, retPromptDelay);
      const retType = typeof retPromptDelay === 'string' ? 2 : +(typeof retPromptDelay === 'number')
      // this is for YouTube Music to not show the prompt. I guess this should be added to YouTube version too.
      // lact -> promptDelaySec -> showDialog -> playbackPauseDelayMs -> pause
      if (retType >= 1) {
        Object.defineProperty(youThereData, 'promptDelaySec', {
          enumerable: true,
          configurable: true,
          get() {
            Promise.resolve(new Date).then(d => {
              console.log(`${websiteName} is trying to pause video...`, d.toLocaleTimeString());
            }).catch(console.warn);
            let ret = 5 * mPU;
            if (retType === 2) return `${ret}`;
            return ret;
          },
          set(newValue) {
            let oldValue = youThereDataHashMapPromptDelay.get(this);
            Promise.resolve([oldValue, newValue, new Date]).then(args => {
              const [oldValue, newValue, d] = args;
              console.log(`${websiteName} is trying to change value 'playbackPauseDelayMs' from ${oldValue} to ${newValue} ...`, d.toLocaleTimeString());
            }).catch(console.warn)
            youThereDataHashMapPromptDelay.set(this, newValue);
            return true;
          }
        });
      }
    }
  }

  // e.performDataUpdate -> f.playerData = a.playerResponse;
  // youthereDataChanged_(playerData.messages)
  // youthereDataChanged_ -> b.youThereRenderer && fFb(this.youThereManager_, b.youThereRenderer)
  // a.youThereData_ = b.configData.youThereData;
  // a.youThereData_.playbackPauseDelayMs
  function onPageFinished() {
    Promise.resolve(0).then(() => {
      let messages = null;
      try {
        messages = document.querySelector('#page-manager').data.playerResponse.messages;
      } catch (e) { }
      if (messages && messages.length > 0) {
        for (const message of messages) {
          if (message.youThereRenderer) {
            let youThereData = null;
            try {
              youThereData = message.youThereRenderer.configData.youThereData;
            } catch (e) { }
            if (youThereData) hookYouThereData(youThereData)
            youThereData = null
            break;
          }
        }
      }

      let ytdFlexy = document.querySelector('ytd-watch-flexy')
      if (ytdFlexy) {
        let youThereData_ = (ytdFlexy.youThereManager_ || 0).youThereData_ || 0
        if (youThereData_) hookYouThereData(youThereData_)
        if (typeof ytdFlexy.youthereDataChanged_ === 'function') {
          let f = ytdFlexy.youthereDataChanged_
          if (!f.lq2S7) {
            ytdFlexy.youthereDataChanged_ = (function (f) {
              return function () {
                console.log('youthereDataChanged_()')
                const ret = f.apply(this, arguments)
                onPageFinished()
                return ret
              }
            })(f)
            ytdFlexy.youthereDataChanged_.lq2S7 = 1
          }
        }
      }

    }).catch(console.warn)
  }
  document.addEventListener('yt-page-data-updated', onPageFinished, true);
  document.addEventListener('yt-navigate-finish', onPageFinished, true);

})();