// ==UserScript== // @name YouTube: Force Animated-Rolling-Number // @namespace UserScripts // @match https://www.youtube.com/* // @grant none // @version 0.1.1 // @author CY Fung // @license MIT // @description To force YouTube use Animated-Rolling-Number for YouTube Live // @run-at document-start // @inject-into page // @unwrap // @require https://greasyfork.org/scripts/475632-ytconfighacks/code/ytConfigHacks.js?version=1252709 // @downloadURL none // ==/UserScript== (() => { window._ytConfigHacks.add((config_) => { const EXPERIMENT_FLAGS = config_.EXPERIMENT_FLAGS; if (EXPERIMENT_FLAGS) { EXPERIMENT_FLAGS.web_enable_dynamic_metadata = true; EXPERIMENT_FLAGS.dynamic_metadata_update_interaction_delay_period_sec = 8; } }); })();