🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/09 06:07:39
🔄 下次更新时间:2026/01/09 07:07:39
手动刷新缓存

ytConfigHacks

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

Tätä skriptiä ei tulisi asentaa suoraan. Se on kirjasto muita skriptejä varten sisällytettäväksi metadirektiivillä // @require https://update.greasyfork.org/scripts/475632/1361351/ytConfigHacks.js.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Tekijä
𝖢𝖸 𝖥𝗎𝗇𝗀
Versio
0.4.3
Luotu
19.9.2023
Päivitetty
16.4.2024
Size
5,45 kt
Lisenssi
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