bilibili Video Skip 90S
当前为
// ==UserScript==
// @name bilibili Video Skip
// @version 2.0.1
// @description bilibili Video Skip 90S
// @author Vanisoul
// @match https://www.bilibili.com/*
// @require https://gf.qytechs.cn/scripts/472487-bilibili-get-video-player/code/bilibili%20Get%20Video%20Player.js?version=1234536
// @license MIT
// @namespace http://tampermonkey.net/
// ==/UserScript==
var key = "j"; //啟動鍵J
var OPTime = 90; //跳過長度
window.addEventListener('vanisoul_dashPlayer_Ready', function(e) {
window.BGHFDBVEAWSGV_dashPlayer = e.detail;
});
document.addEventListener('keydown', function(event){
const dashPlayer = window.BGHFDBVEAWSGV_dashPlayer;
if(event.key.toLocaleLowerCase() === key && dashPlayer){
const currentTime = dashPlayer.getCurrentTime();
dashPlayer.seek(currentTime + OPTime);
}
});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址