您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disable this annoying AI voice in youtube
// ==UserScript== // @name NoSABR (Disable Youtube Auto-Dubbing) // @namespace http://tampermonkey.net/ // @version 2025-08-28 // @description Disable this annoying AI voice in youtube // @author emlinhax // @match https://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @grant none // @license MIT // @run-at document-start // ==/UserScript== (function() { 'use strict'; window.ytcfg_set = ytcfg.set ytcfg.set = (x) => { console.log("Disabling SABR Auto-dubbing...") for(var c in x.WEB_PLAYER_CONTEXT_CONFIGS) { x.WEB_PLAYER_CONTEXT_CONFIGS[c].serializedExperimentFlags = x.WEB_PLAYER_CONTEXT_CONFIGS[c].serializedExperimentFlags.replace(/html5_sabr(.*?)true/g, 'html5_sabr$1false'); console.log(x.WEB_PLAYER_CONTEXT_CONFIGS[c].serializedExperimentFlags) } window.ytcfg_set(x) } })();