7/3/2023, 11:16:26 PM
当前为
// ==UserScript==
// @name polymer_enable_controller_extraction
// @namespace test
// @match https://www.youtube.com/*
// @grant none
// @version 1.2
// @author -
// @description 7/3/2023, 11:16:26 PM
// @run-at document-start
// @allFrames true
// @require https://greasyfork.org/scripts/475632-ytconfighacks/code/ytConfigHacks.js?version=1252709
// ==/UserScript==
(() => {
window._ytConfigHacks.add((config_) => {
const EXPERIMENT_FLAGS = config_.EXPERIMENT_FLAGS;
if (EXPERIMENT_FLAGS) {
EXPERIMENT_FLAGS.polymer_enable_controller_extraction=true
}
});
})();