您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bind the spacebar to play/pause the video.
- // ==UserScript==
- // @name Youtube: Space to Pause
- // @description Bind the spacebar to play/pause the video.
- // @author Chris H (Zren)
- // @icon https://youtube.com/favicon.ico
- // @namespace http://xshade.ca
- // @version 1
- // @include http*://*.youtube.com/*
- // @include http*://youtube.com/*
- // @include http*://*.youtu.be/*
- // @include http*://youtu.be/*
- // ==/UserScript==
- window.addEventListener('keydown', function(e) {
- var playButton = document.querySelector('button.ytp-play-button');
- var isKey = e.keyCode === 32; // Space
- var validTarget = e.target === document.body || e.target === document.querySelector('#player-api');
- if (validTarget && isKey && playButton) {
- e.preventDefault();
- playButton.click();
- }
- });