Unlock YT Live Rewind

Força o modo DVR em transmissões ao vivo no YouTube com DVR desativado

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Unlock YT Live Rewind
// @namespace    custom.scripts.youtube
// @version      1.1.0
// @description  Força o modo DVR em transmissões ao vivo no YouTube com DVR desativado
// @author       CustomDev
// @match        https://www.youtube.com/*
// @match        https://m.youtube.com/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==

(() => {
  'use strict';

  const originalDescriptor = Object.getOwnPropertyDescriptor(Object.prototype, 'playerResponse');

  const originalGet = originalDescriptor?.get?.bind(Object.prototype) ?? function () {
    return this.__rewindPatch__;
  };

  const originalSet = originalDescriptor?.set?.bind(Object.prototype) ?? function (val) {
    this.__rewindPatch__ = val;
  };

  function isPlainObject(val) {
    return val && typeof val === 'object';
  }

  function showDvrIndicator() {
    const tryAttach = () => {
      const player = document.querySelector('#movie_player, .html5-video-player');
      if (!player) {
        setTimeout(tryAttach, 200);
        return;
      }

      let indicator = document.createElement('div');
      indicator.textContent = "DVR";
      indicator.style.position = "absolute";
      indicator.style.top = "8px";
      indicator.style.right = "500px";
      indicator.style.padding = "2px 6px";
      indicator.style.borderRadius = "4px";
      indicator.style.fontWeight = "bold";
      indicator.style.zIndex = "9999";
      indicator.style.color = "white";
      indicator.style.backgroundColor = "gray";
      indicator.style.fontSize = "16px";
      indicator.style.pointerEvents = "none";
      indicator.style.transition = "background-color 0.5s ease";

      player.appendChild(indicator);

      setTimeout(() => { indicator.style.backgroundColor = "red"; }, 1000);
      setTimeout(() => { indicator.remove(); }, 6000);
    };

    tryAttach();
  }

  Object.defineProperty(Object.prototype, 'playerResponse', {
    configurable: true,
    get() {
      return originalGet.call(this);
    },
    set(newData) {
      if (!isPlainObject(newData)) {
        return originalSet.call(this, newData);
      }

      const video = newData.videoDetails;
      const stream = newData.streamingData;
      const config = newData.playerConfig;

      if (isPlainObject(video) && video.isLive && !video.isLiveDvrEnabled) {
        video.isLiveDvrEnabled = true;

        if (isPlainObject(config) && isPlainObject(config.mediaCommonConfig)) {
          config.mediaCommonConfig.useServerDrivenAbr = false;
        }

        if (isPlainObject(stream) && stream.serverAbrStreamingUrl) {
          delete stream.serverAbrStreamingUrl;
        }

        // Mostra o indicador apenas quando realmente ativar DVR
        showDvrIndicator();
      }

      originalSet.call(this, newData);
    }
  });
})();