您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disables the captions
// ==UserScript== // @name Youtube No Captions // @description Disables the captions // @author nullgemm // @version 0.1.0 // @grant none // @match *://*.youtube.com/* // @run-at document-start // @icon https://www.youtube.com/s/desktop/264d4061/img/favicon.ico // @namespace https://greasyfork.org/en/users/322108-nullgemm // @license WTFPL // ==/UserScript== (function() { 'use strict'; const timestamp = Date.now(); const value = {"data":"false","expiration":4294967296000,"creation":timestamp}; localStorage.setItem("yt-player-sticky-caption", JSON.stringify(value)); })();