您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
set youtube video speed to 1.5x(you can set your own speed) automatically.
当前为
// ==UserScript== // @name auto adjust youtube video speed // @namespace Violentmonkey Scripts // @description set youtube video speed to 1.5x(you can set your own speed) automatically. // @match *://*.youtube.com/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @grant GM_addStyle // @version 0.0.1.20180625212538 // ==/UserScript== // //!!!important!!! //you have to manually add "// @require https://gist.github.com/raw/2625891/waitForKeyElements.js" to the script. waitForKeyElements ("video", function() { 'use strict'; // set your desired play speed here var rate = 1.5; document.querySelector('video').playbackRate = rate; });