Greasy Fork is available in English.

polymer_enable_controller_extraction

7/3/2023, 11:16:26 PM

Pada tanggal 19 September 2023. Lihat %(latest_version_link).

// ==UserScript==
// @name        polymer_enable_controller_extraction
// @namespace   test
// @match       https://www.youtube.com/*
// @grant       none
// @version     1.1
// @author      -
// @description 7/3/2023, 11:16:26 PM
// @run-at      document-start
// @allFrames   true
// @require     https://gf.zukizuki.org/scripts/475632-ytconfighacks/code/ytConfigHacks.js?version=1252599
// ==/UserScript==

(() => {

  window._ytConfigHacks.add((config_) => {
    

    const EXPERIMENT_FLAGS = config_.EXPERIMENT_FLAGS;

    if (EXPERIMENT_FLAGS) {

      EXPERIMENT_FLAGS.polymer_enable_controller_extraction=true

    }

  });

})();