您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Enables the hidden playback speed option in YouTube Music
// ==UserScript== // @name Enable hidden playback speed option in YT Music // @namespace http://tampermonkey.net/ // @version 0.1 // @description Enables the hidden playback speed option in YouTube Music // @author oRevived (Damian) // @match https://music.youtube.com/* // @grant none // @license MIT // ==/UserScript== // Selects the element with the "playback-rate style-scope ytmusic-player-bar" class. var element = document.querySelector('.playback-rate.style-scope.ytmusic-player-bar'); // If the element exists, remove the "hidden" attribute so it is visible (it should appear at the bottom right, next to the volume button). if (element) { element.removeAttribute('hidden'); }