YTBetter - Enable Rewind/DVR

Позволяет перематывать YouTube-стримы, где такая возможность заблокирована

Установить этот скрипт?
Рекомендуемый автором скрипт

Вам также может понравится YouTube All Videos Playlists (YAVP).

Установить этот скрипт
// ==UserScript==
// @name         YTBetter - Enable Rewind/DVR
// @namespace    YTBetter
// @version      2.2
// @description  Unlocks rewind for YouTube live streams with disabled DVR
// @description:ru  Позволяет перематывать YouTube-стримы, где такая возможность заблокирована
// @author       トワ…
// @match        https://www.youtube.com/*
// @match        https://m.youtube.com/*
// @run-at       document-start
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// @license      MIT
// ==/UserScript==

"use strict";

// Interop with "Simple YouTube Age Restriction Bypass"
const {
    get: getter,
    set: setter,
} = Object.getOwnPropertyDescriptor(Object.prototype, "playerResponse") ?? {
    set(value) {
        this[Symbol.for("YTBetter")] = value;
    },
    get() {
        return this[Symbol.for("YTBetter")];
    },
};

const isObject = (value) => value != null && typeof value === "object";

Object.defineProperty(Object.prototype, "playerResponse", {
    set(value) {
        if (isObject(value)) {
            const { videoDetails } = value;
            if (isObject(videoDetails)) {
                videoDetails.isLiveDvrEnabled = true;
            }
        }
        setter.call(this, value);
    },
    get() {
        return getter.call(this);
    },
    configurable: true,
});