ytConfigHacks

To provide a way to hack the yt.config_ such as EXPERIMENT_FLAGS

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/475632/1361351/ytConfigHacks.js

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

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

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

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

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

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

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

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

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

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

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

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

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

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

作者
𝖢𝖸 𝖥𝗎𝗇𝗀
版本
0.4.3
创建于
2023-09-19
更新于
2024-04-16
大小
5.5 KB
许可证
MIT

The script must be included from a userscript with the following metablocks

  • // @match https://www.youtube.com/*
  • // @run-at document-start
  • // @inject-into page
  • // @grant none

Then an array window._ytConfigHacks will be provided and push your function into the array.

Testing

// ==UserScript==
// @name        New1235
// @namespace   Violentmonkey Scripts
// @match       https://greasyfork.org/*
// @grant       none
// @version     1.0
// @author      -
// @description 9/19/2023, 10:41:12 AM
// @require https://update.greasyfork.org/scripts/475632/1361351/ytConfigHacks.js
// ==/UserScript==


console.log(window._ytConfigHacks)

window._ytConfigHacks.add(function(){
  console.log('test OK')
});


window.ytcsi={
  tick:function(){}
}

window.yt={}
window.yt.config_={};

ytcsi.tick;

Real Example


// ==UserScript==
// @name        YouTube: Force Animated-Rolling-Number for Live
// @namespace   Violentmonkey Scripts
// @match       https://www.youtube.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 9/19/2023, 9:32:49 AM
// @run-at      document-start
// @inject-into page
// @unwrap
// @require https://update.greasyfork.org/scripts/475632/1361351/ytConfigHacks.js
// ==/UserScript==

(() => {

  let mex = 0;

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


    let EXPERIMENT_FLAGS = null;
    EXPERIMENT_FLAGS = config_.EXPERIMENT_FLAGS || 0;

    if (EXPERIMENT_FLAGS) {

      if (!mex) {
        mex = 1;
        console.log('EXPERIMENT_FLAGS detected')
      }

      EXPERIMENT_FLAGS.web_enable_dynamic_metadata = true;
      EXPERIMENT_FLAGS.dynamic_metadata_update_interaction_delay_period_sec = 8;


    }

  });

})();

Scripts Using this Library