您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Play YouTube videos at 10x speed with the 'L' key shortcut
// ==UserScript== // @name YouTube 10x Speed Shortcut // @namespace http://tampermonkey.net/ // @version 0.1 // @description Play YouTube videos at 10x speed with the 'L' key shortcut // @author You // @match https://www.youtube.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Function to set playback rate to 10x function setPlaybackRate() { let player = document.querySelector('video'); if (player) { player.playbackRate = 10; } } // Event listener for key press document.addEventListener('keydown', function(event) { // Check if 'L' key is pressed if (event.key === 'l' || event.key === 'L') { setPlaybackRate(); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址