Workaround For Youtube Embed Preview

Fix Youtube Embed Preview

Versione datata 04/06/2021. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Workaround For Youtube Embed Preview
// @namespace    https://github.com/stu43005
// @version      0.1
// @description  Fix Youtube Embed Preview
// @author       stu43005
// @match        https://www.youtube.com/embed*
// @run-at       document-end
// @grant        none
// @license      BSD-3-Clause https://opensource.org/licenses/BSD-3-Clause
// ==/UserScript==

(function () {
    'use strict';

    const ytcfg = window.ytcfg;
    if (!ytcfg) {
        console.warn("disablePlayability: ytcfg is missing");
        return;
    }
    const configs = ytcfg.get("WEB_PLAYER_CONTEXT_CONFIGS");
    configs.WEB_PLAYER_CONTEXT_CONFIG_ID_EMBEDDED_PLAYER.serializedExperimentFlags = configs.WEB_PLAYER_CONTEXT_CONFIG_ID_EMBEDDED_PLAYER.serializedExperimentFlags.replace(/(?<=embeds_enable_playability_on_web_preview=)true/, "false");
    console.info("disablePlayability: embeds_enable_playability_on_web_preview flag disabled");

})();