您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
其实就是视频的加速播放根据
// ==UserScript== // @name b站快速入脑学习工具(加速播放) // @namespace https://www.bilibili.com // @version 0.2 // @description 其实就是视频的加速播放根据 // @author tuite // @match https://www.bilibili.com/video/* // @grant none // @license none // ==/UserScript== (function () { 'use strict'; let js = `<div class="toolbar-left-item-wrap"> <div title="加速" class="video-like video-toolbar-left-item" onclick="document.getElementsByTagName('video')[0].playbackRate=2.5"> <span class="video-like-info video-toolbar-item-text">加速</span> </div> </div>` setTimeout(function () { document.getElementsByClassName('video-toolbar-left')[0].innerHTML += js; }, 3000) })();